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

Merge branch '3.5_stable'

* 3.5_stable:
  Prepare for 3.5.1 release
  fix method name
This commit is contained in:
Thomas Walpole 2018-08-03 15:50:48 -07:00
commit 82bbef80f2
3 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,10 @@
# Version 3.5.1
Release date: 2018-08-03
### Fixed
* Fixed misspelled method name `refute_matches_elector` => `refute_matches_selector`
# Version 3.5.0
Release date: 2018-08-01

View file

@ -540,7 +540,7 @@ module Capybara
# Deprecated
# TODO: remove
def refute_matches_elector(*args, &optional_filter_block)
def refute_matches_selector(*args, &optional_filter_block)
warn '`refute_matches_selector` was never meant to be in this scope unless ' \
'using minitest. Either replace with `assert_not_matches_selector` ' \
"or require 'capybara/minitest'."

View file

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