From 818ee530af0d5af15af1b1f263d1e7316abc2ea7 Mon Sep 17 00:00:00 2001 From: Thomas Walpole Date: Thu, 9 May 2019 08:28:03 -0700 Subject: [PATCH] Prepare for 3.19.0 release --- History.md | 7 ++++--- README.md | 2 +- lib/capybara/version.rb | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/History.md b/History.md index 7975c849..507310c3 100644 --- a/History.md +++ b/History.md @@ -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 diff --git a/README.md b/README.md index 806fa486..7c11e818 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/lib/capybara/version.rb b/lib/capybara/version.rb index 44d5b11f..f349c36e 100644 --- a/lib/capybara/version.rb +++ b/lib/capybara/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Capybara - VERSION = '3.18.0' + VERSION = '3.19.0' end