Release capybara-webkit 1.3.1

This commit is contained in:
Matthew Horan 2014-10-21 22:50:16 -04:00
parent acf748e295
commit 37fdbe1355
6 changed files with 16 additions and 15 deletions

View File

@ -1,7 +1,7 @@
PATH PATH
remote: . remote: .
specs: specs:
capybara-webkit (1.3.0) capybara-webkit (1.3.1)
capybara (>= 2.0.2, < 2.5.0) capybara (>= 2.0.2, < 2.5.0)
json json
@ -12,7 +12,7 @@ GEM
appraisal (0.4.0) appraisal (0.4.0)
bundler bundler
rake rake
capybara (2.4.1) capybara (2.4.4)
mime-types (>= 1.16) mime-types (>= 1.16)
nokogiri (>= 1.3.3) nokogiri (>= 1.3.3)
rack (>= 1.0.0) rack (>= 1.0.0)
@ -25,21 +25,17 @@ GEM
ffi (1.9.3-java) ffi (1.9.3-java)
ffi (1.9.3-x86-mingw32) ffi (1.9.3-x86-mingw32)
json (1.8.1) json (1.8.1)
json (1.8.1-java)
launchy (2.4.2) launchy (2.4.2)
addressable (~> 2.3) addressable (~> 2.3)
launchy (2.4.2-java) launchy (2.4.2-java)
addressable (~> 2.3) addressable (~> 2.3)
spoon (~> 0.0.1) spoon (~> 0.0.1)
mime-types (2.3) mime-types (2.4.3)
mini_magick (3.2.1) mini_magick (3.2.1)
subexec (~> 0.0.4) subexec (~> 0.0.4)
mini_portile (0.6.0) mini_portile (0.6.0)
multi_json (1.8.4) multi_json (1.8.4)
nokogiri (1.6.2.1) nokogiri (1.6.3.1)
mini_portile (= 0.6.0)
nokogiri (1.6.2.1-java)
nokogiri (1.6.2.1-x86-mingw32)
mini_portile (= 0.6.0) mini_portile (= 0.6.0)
rack (1.5.2) rack (1.5.2)
rack-protection (1.3.2) rack-protection (1.3.2)

View File

@ -1,3 +1,8 @@
New for 1.3.1:
* Inherit from Capybara::Driver::Base for Capybara 2.4.4 compatibility.
* Fix a bug in the modal API which could cause an incorrect modal to be found.
New for 1.3.0: New for 1.3.0:
* Capybara 2.4 compatibility. * Capybara 2.4 compatibility.

View File

@ -1,7 +1,7 @@
PATH PATH
remote: ../ remote: ../
specs: specs:
capybara-webkit (1.3.0) capybara-webkit (1.3.1)
capybara (>= 2.0.2, < 2.5.0) capybara (>= 2.0.2, < 2.5.0)
json json

View File

@ -1,7 +1,7 @@
PATH PATH
remote: ../ remote: ../
specs: specs:
capybara-webkit (1.3.0) capybara-webkit (1.3.1)
capybara (>= 2.0.2, < 2.5.0) capybara (>= 2.0.2, < 2.5.0)
json json

View File

@ -1,7 +1,7 @@
PATH PATH
remote: ../ remote: ../
specs: specs:
capybara-webkit (1.3.0) capybara-webkit (1.3.1)
capybara (>= 2.0.2, < 2.5.0) capybara (>= 2.0.2, < 2.5.0)
json json
@ -12,7 +12,7 @@ GEM
appraisal (0.4.1) appraisal (0.4.1)
bundler bundler
rake rake
capybara (2.4.1) capybara (2.4.4)
mime-types (>= 1.16) mime-types (>= 1.16)
nokogiri (>= 1.3.3) nokogiri (>= 1.3.3)
rack (>= 1.0.0) rack (>= 1.0.0)
@ -25,12 +25,12 @@ GEM
json (1.8.1) json (1.8.1)
launchy (2.4.2) launchy (2.4.2)
addressable (~> 2.3) addressable (~> 2.3)
mime-types (2.3) mime-types (2.4.3)
mini_magick (3.7.0) mini_magick (3.7.0)
subexec (~> 0.2.1) subexec (~> 0.2.1)
mini_portile (0.6.0) mini_portile (0.6.0)
multi_json (1.10.1) multi_json (1.10.1)
nokogiri (1.6.2.1) nokogiri (1.6.3.1)
mini_portile (= 0.6.0) mini_portile (= 0.6.0)
rack (1.5.2) rack (1.5.2)
rack-protection (1.5.3) rack-protection (1.5.3)

View File

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