Prep for 0.4.2 release

This commit is contained in:
Bryan Helmkamp 2009-02-24 12:29:05 -05:00
parent e32a208b7f
commit b7e0d6f8e6
2 changed files with 14 additions and 3 deletions

View File

@ -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)

View File

@ -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"