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

Prepare for 3.8.0 release

This commit is contained in:
Thomas Walpole 2018-09-20 10:08:13 -07:00
parent 449f0ae47d
commit e9161779a5
3 changed files with 7 additions and 3 deletions

View file

@ -1,11 +1,15 @@
# Version 3.8.0 # Version 3.8.0
Release date: unreleased Release date: 2018-09-20
### Added ### Added
* Workaround gecodriver 0.22 issue with undefined pause durations * Workaround gecodriver 0.22 issue with undefined pause durations
* :element selector ignores XML namespaces * :element selector ignores XML namespaces
### Fixed
* Added Errno::ECONNRESET to the errors which will allows https server detection
# Version 3.7.2 # Version 3.7.2
Release date: 2018-09-12 Release date: 2018-09-12

View file

@ -7,7 +7,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) [![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 **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.7_stable/README.md you can find the README at https://github.com/teamcapybara/capybara/blob/3.8_stable/README.md
Capybara helps you test web applications by simulating how a real user would Capybara helps you test web applications by simulating how a real user would

View file

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