1
0
Fork 0
mirror of https://github.com/thoughtbot/capybara-webkit synced 2023-03-27 23:22:28 -04:00

Bump to 1.1.0 and update NEWS with changes

This commit is contained in:
Joe Ferris 2013-12-06 12:00:57 -05:00
parent 6945ed52c7
commit fa8e377784
3 changed files with 20 additions and 7 deletions

View file

@ -1,7 +1,7 @@
PATH
remote: .
specs:
capybara-webkit (1.0.0)
capybara-webkit (1.1.0)
capybara (~> 2.0, >= 2.0.2)
json
@ -11,7 +11,7 @@ GEM
appraisal (0.4.0)
bundler
rake
capybara (2.1.0)
capybara (2.2.0)
mime-types (>= 1.16)
nokogiri (>= 1.3.3)
rack (>= 1.0.0)
@ -22,13 +22,14 @@ GEM
diff-lcs (1.2.4)
ffi (1.9.0)
ffi (1.9.0-x86-mingw32)
json (1.8.0)
mime-types (1.22)
json (1.8.1)
mime-types (2.0)
mini_magick (3.2.1)
subexec (~> 0.0.4)
mini_portile (0.5.2)
multi_json (1.7.8)
nokogiri (1.5.9)
nokogiri (1.5.9-x86-mingw32)
nokogiri (1.6.0)
mini_portile (~> 0.5.0)
rack (1.5.2)
rack-protection (1.3.2)
rack

12
NEWS.md
View file

@ -1,3 +1,15 @@
New for 1.1.0:
* Improve messages for ClickFailed errors to aid debugging.
* Fix long load times on Ruby 2.0.0-p195.
* Automatically save screenshots on ClickFailed errors.
* Render a mouse pointer in screenshots for the current mouse location.
* Silent debug messages from Qt.
* Fix OS X keychain bug in Qt 5 related to basic authentication.
* Fix issues visiting URLs with square brackets.
* Fail immediately when trying to install with unsupported versions of Qt.
* Fix race condition leading to InvalidResponseErrors.
New for 1.0.0:
* Fix a memory leak in the logger.

View file

@ -1,7 +1,7 @@
module Capybara
module Driver
class Webkit
VERSION = '1.0.0'.freeze
VERSION = '1.1.0'.freeze
end
end
end