Bump to 0.14.0

This commit is contained in:
Matthew Horan 2013-01-03 13:45:21 -05:00
parent 3dfcf46057
commit 6b13f51b83
3 changed files with 7 additions and 3 deletions

View File

@ -1,7 +1,7 @@
PATH
remote: .
specs:
capybara-webkit (0.13.0)
capybara-webkit (0.14.0)
capybara (~> 2.0, >= 2.0.2)
json

View File

@ -1,4 +1,4 @@
New for HEAD:
New for 0.14.0:
* URL blacklist support.
* Various fixes for JavaScript console messages.
@ -12,6 +12,10 @@ New for HEAD:
* JavaScipt console messages and alerts are now written to the logger instead of directly to stdout.
* Dropped support for Qt 4.7.
* Fix deadlocks encountered during page load.
* Delete Response objects when commands have timed out.
* Fix an infinite loop when invalid credentials are used for HTTP auth.
* Ensure queued commands start only after pending commands have finished.
* Fix segfaults related to web fonts on OS X.
New for 0.13.0:

View File

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