Bump to 1.14.0

This commit is contained in:
Matthew Horan 2017-03-26 18:01:52 -04:00
parent 65c56752a0
commit fd0732ae16
No known key found for this signature in database
GPG Key ID: 2FA954B6CAEFCE63
3 changed files with 12 additions and 2 deletions

View File

@ -1,7 +1,7 @@
PATH
remote: .
specs:
capybara-webkit (1.13.0)
capybara-webkit (1.14.0)
capybara (>= 2.3.0, < 2.14.0)
json

10
NEWS.md
View File

@ -1,3 +1,13 @@
New for 1.14.0:
* Fix the 'Reset' command in debug builds (on Windows)
* Check for Windows platform in a jruby compatible way
* Include qtwebkitversion.h to work in newer qtwebkit
* Support Capybara 2.13 and fix some hound warnings
* Support returning elements from evaluate_script
* Support most of the keys specified by Capybara for Node#send_keys
* Fix issue with switching to the same frame twice in a row
New for 1.13.0:
* Allow JavaScript errors to be raised as Ruby exceptions

View File

@ -1,7 +1,7 @@
module Capybara
module Driver
class Webkit
VERSION = "1.13.0".freeze
VERSION = "1.14.0".freeze
end
end
end