From 8f2cdefd464ab7cbe4c240b995d1f32c366c22c4 Mon Sep 17 00:00:00 2001 From: Matthew Mongeau Date: Fri, 2 Mar 2012 13:53:05 -0500 Subject: [PATCH] Bump version to 0.10.1 --- ChangeLog | 16 ++++++++++++++++ Gemfile.lock | 2 +- NEWS.md | 6 ++++++ lib/capybara/driver/webkit/version.rb | 2 +- 4 files changed, 24 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index a50a43e..17b981e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,19 @@ +2012-03-02 Matthew Mongeau + * capybara_webkit_builder.rb: + set LANG to en_US.UTF-8 to prevent string encoding issues during install + +2012-03-02 Marc Schwieterman + * Rakefile: pro, find_command, and CommandFactory are more structured + +2012-02-27 Joe Ferris + * README.md: Fixed broken wiki link + +2012-02-24 Joe Ferris + * README.md: Update instructions for platform specific installation issues + +2012-02-17 Matthew Mongeau + * driver_spec.rb, capybara.js: Send proper keycode during keypress event + 2012-02-17 Matthew Mongeau * ChangeLog, version.rb: Bump to 0.10.0 diff --git a/Gemfile.lock b/Gemfile.lock index 6f2688b..cf45214 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - capybara-webkit (0.10.0) + capybara-webkit (0.10.1) capybara (>= 1.0.0, < 1.2) json diff --git a/NEWS.md b/NEWS.md index f46b9ee..c6c5915 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,9 @@ +New for 0.10.1: +* 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. +* Changed wiki link and directing platform specific issues to the google group. +* Pass proper keycode value for keypress events. + New for 0.10.0: * current_url now more closely matches the behavior of Selenium diff --git a/lib/capybara/driver/webkit/version.rb b/lib/capybara/driver/webkit/version.rb index b51f9b3..2837d50 100644 --- a/lib/capybara/driver/webkit/version.rb +++ b/lib/capybara/driver/webkit/version.rb @@ -1,7 +1,7 @@ module Capybara module Driver class Webkit - VERSION = '0.10.0'.freeze + VERSION = '0.10.1'.freeze end end end