1
0
Fork 0
mirror of https://github.com/teamcapybara/capybara.git synced 2022-11-09 12:08:07 -05:00

Prepare for 3.10.1 release

This commit is contained in:
Thomas Walpole 2018-11-03 12:51:41 -07:00
parent d1e4b4184a
commit 0685c3902f
3 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,11 @@
# Version 3.10.1
Release date: 2018-11-03
### Fixed
* Fix `aria-label` and `test_id` matching for `link_or_button` selector type - Issue #2125
* Fixed crash in element path creation for matcher failure messages - Issue #2120
# Version 3.10.0
Release date: 2018-10-23

View file

@ -156,7 +156,6 @@ module Capybara
def matches_node_filters?(node)
unapplied_options = options.keys - valid_keys
node_filters.all? do |filter_name, filter|
if filter.matcher?
unapplied_options.select { |option_name| filter.handles_option?(option_name) }.all? do |option_name|

View file

@ -1,5 +1,5 @@
# frozen_string_literal: true
module Capybara
VERSION = '3.10.0'
VERSION = '3.10.1'
end