Prepare for 3.19.0 release

This commit is contained in:
Thomas Walpole 2019-05-09 08:28:03 -07:00
parent 1419fad3f2
commit 818ee530af
3 changed files with 6 additions and 5 deletions

View File

@ -1,12 +1,13 @@
# Version 3.19.0
Release date: unreleased
Release date: 2019-05-09
### Added
* Support for multiple expression types in Selector definitions
* Reduced wirecalls for common actions in Selenium driver
* Syntactic sugar `#once`, `#twice`, `#thrice`, `#excatly`, `#at_least`, `#at_most` to
`have_selector`, `have_css`, `have_xpath`, and `have_text` RSpec matchers
* Support for multiple expression types in Selector definitions
* Reduced wirecalls for common actions in Selenium driver
### Fixed

View File

@ -8,7 +8,7 @@
[![SemVer](https://api.dependabot.com/badges/compatibility_score?dependency-name=capybara&package-manager=bundler&version-scheme=semver)](https://dependabot.com/compatibility-score.html?dependency-name=capybara&package-manager=bundler&version-scheme=semver)
**Note** You are viewing the README for the development version of Capybara. If you are using the current release version
you can find the README at https://github.com/teamcapybara/capybara/blob/3.18_stable/README.md
you can find the README at https://github.com/teamcapybara/capybara/blob/3.19_stable/README.md
Capybara helps you test web applications by simulating how a real user would

View File

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