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

Bump to 0.10.2

This commit is contained in:
Matthew Mongeau 2012-03-16 10:35:31 -04:00
parent 02f2a8ab73
commit 464a7bf4cd
3 changed files with 13 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2012-03-09 Joe Ferris <jferris@thoughtbot.com>
* node.rb, driver_spec.rb: Allow interaction with invisible elements
2012-03-02 Joe Ferris <jferris@thoughtbot.com>
* browser.rb: Use Timeout from stdlib since Capybara.timeout is being removed
2012-03-02 Matthew Mongeau <halogenandtoast@gmail.com> 2012-03-02 Matthew Mongeau <halogenandtoast@gmail.com>
* capybara_webkit_builder.rb: * capybara_webkit_builder.rb:
set LANG to en_US.UTF-8 to prevent string encoding issues during install set LANG to en_US.UTF-8 to prevent string encoding issues during install

View file

@ -1,4 +1,10 @@
New for 0.10.2:
* Allow interaction with invisible elements
* Use Timeout from stdlib since Capybara.timeout is being removed
New for 0.10.1: New for 0.10.1:
* LANG environment variable is set to en_US.UTF-8 in order to avoid string encoding issues from qmake. * LANG environment variable is set to en_US.UTF-8 in order to avoid string encoding issues from qmake.
* pro, find_command, and CommandFactory are more structured. * pro, find_command, and CommandFactory are more structured.
* Changed wiki link and directing platform specific issues to the google group. * Changed wiki link and directing platform specific issues to the google group.

View file

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