Release capybara-webkit 1.0.0

Fixes #505.
This commit is contained in:
Matthew Horan 2013-05-21 21:32:02 -04:00
parent 77973a47ae
commit 9bbf4f6b55
5 changed files with 21 additions and 17 deletions

View File

@ -1,7 +1,7 @@
PATH
remote: .
specs:
capybara-webkit (0.14.1)
capybara-webkit (1.0.0)
capybara (~> 2.0, >= 2.0.2)
json
@ -12,28 +12,26 @@ GEM
appraisal (0.4.0)
bundler
rake
capybara (2.0.2)
capybara (2.1.0)
mime-types (>= 1.16)
nokogiri (>= 1.3.3)
rack (>= 1.0.0)
rack-test (>= 0.5.4)
selenium-webdriver (~> 2.0)
xpath (~> 1.0.0)
xpath (~> 2.0)
childprocess (0.3.6)
ffi (~> 1.0, >= 1.0.6)
diff-lcs (1.1.2)
ffi (1.2.0)
ffi (1.2.0-x86-mingw32)
json (1.7.7)
json (1.8.0)
libwebsocket (0.1.7.1)
addressable
websocket
mime-types (1.19)
mime-types (1.22)
mini_magick (3.2.1)
subexec (~> 0.0.4)
multi_json (1.5.0)
nokogiri (1.5.6)
nokogiri (1.5.6-x86-mingw32)
nokogiri (1.5.9)
rack (1.5.2)
rack-protection (1.3.2)
rack
@ -61,7 +59,7 @@ GEM
subexec (0.0.4)
tilt (1.3.3)
websocket (1.0.6)
xpath (1.0.0)
xpath (2.0.0)
nokogiri (~> 1.3)
PLATFORMS

View File

@ -1,4 +1,4 @@
New for HEAD:
New for 1.0.0:
* Fix a memory leak in the logger.
* Add Vagrant configuration.
@ -6,6 +6,12 @@ New for HEAD:
* Make Node#text work for svg elements.
* Add Driver#version to print version info.
* Click elements with native events.
* Fix test failures from warnings.
* Capybara 2.1 compatibility.
* Implement right click.
* Qt 5 compatibility.
* Set text fields using native key events.
* Clear localStorage on reset.
New for 0.14.1:

View File

@ -1,7 +1,7 @@
PATH
remote: /Users/sikachu/Projects/capybara-webkit
remote: /home/mhoran/capybara-webkit
specs:
capybara-webkit (0.14.1)
capybara-webkit (1.0.0)
capybara (~> 2.0, >= 2.0.2)
json
@ -22,7 +22,7 @@ GEM
ffi (~> 1.0, >= 1.0.11)
diff-lcs (1.1.3)
ffi (1.4.0)
json (1.7.7)
json (1.8.0)
mime-types (1.21)
mini_magick (3.5.0)
subexec (~> 0.2.1)

View File

@ -1,7 +1,7 @@
PATH
remote: /Users/sikachu/Projects/capybara-webkit
remote: /home/mhoran/capybara-webkit
specs:
capybara-webkit (0.14.1)
capybara-webkit (1.0.0)
capybara (~> 2.0, >= 2.0.2)
json
@ -21,7 +21,7 @@ GEM
ffi (~> 1.0, >= 1.0.11)
diff-lcs (1.1.3)
ffi (1.4.0)
json (1.7.7)
json (1.8.0)
mime-types (1.22)
mini_magick (3.5.0)
subexec (~> 0.2.1)

View File

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