Bump to 0.12.0

This commit is contained in:
Matthew Mongeau 2012-05-11 14:05:54 -04:00
parent 846bb80137
commit 5c19691720
3 changed files with 16 additions and 5 deletions

View File

@ -1,7 +1,7 @@
PATH
remote: .
specs:
capybara-webkit (0.11.0)
capybara-webkit (0.12.0)
capybara (>= 1.0.0, < 1.2)
json
@ -22,8 +22,8 @@ GEM
ffi (~> 1.0.6)
diff-lcs (1.1.2)
ffi (1.0.11)
json (1.6.5)
mime-types (1.17.2)
json (1.7.1)
mime-types (1.18)
mini_magick (3.2.1)
subexec (~> 0.0.4)
multi_json (1.0.4)
@ -40,7 +40,7 @@ GEM
rspec-expectations (2.6.0)
diff-lcs (~> 1.1.2)
rspec-mocks (2.6.0)
rubyzip (0.9.6.1)
rubyzip (0.9.7)
selenium-webdriver (2.19.0)
childprocess (>= 0.2.5)
ffi (~> 1.0.9)

11
NEWS.md
View File

@ -1,3 +1,14 @@
New for 0.12.0:
* Better windows support
* Support for localStorage
* Added support for oninput event
* Added resize_window method
* Server binds on LocalHost to prevent having to add firewall exceptions
* Reuse NetworkAccessManager to prevent "too many open files" errors
* Response messages are stored as QByteArray to prevent truncating content
* Browser no longer tries to read empty responses (Fixes jruby issues).
* Server will timeout if it can not start
New for 0.11.0:
* Allow interaction with invisible elements

View File

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