From b7e0d6f8e6e96a5bdcce64cde7bc71982c86e346 Mon Sep 17 00:00:00 2001 From: Bryan Helmkamp Date: Tue, 24 Feb 2009 12:29:05 -0500 Subject: [PATCH] Prep for 0.4.2 release --- History.txt | 15 +++++++++++++-- lib/webrat.rb | 2 +- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/History.txt b/History.txt index 84f61f04..a702bd89 100644 --- a/History.txt +++ b/History.txt @@ -1,11 +1,22 @@ -== Git +== 0.4.2 / 2009-02-24 +* Major enhancements + + * Significant improvements to have_selector. It now supports specifying + attributes in a hash and :count and :content options. See + have_selector_spec.rb for more. + * Add the same functionality mentioned above to have_xpath + * Minor enhancements - * Detect infinite redirects and raise a Webrat::InfiniteRedirectError (Daniel Lucraft) + * Squeeze extra whitespace out of failures messages from contain + matcher + * Detect infinite redirects and raise a Webrat::InfiniteRedirectError + (Daniel Lucraft) * Bug fixes + * Properly quote single and double quotes strings in XPath * Fix warning caused by Nokogiri deprecating CSS::Parser.parse (Aaron Patterson) * Accept do/end blocks in matchers. [#157] (Peter Jaros) diff --git a/lib/webrat.rb b/lib/webrat.rb index 9fd5f74f..000fa1f4 100644 --- a/lib/webrat.rb +++ b/lib/webrat.rb @@ -7,7 +7,7 @@ module Webrat class WebratError < StandardError end - VERSION = '0.4.1' + VERSION = '0.4.2' def self.require_xml gem "nokogiri", ">= 1.0.6"