Prep for 0.4.2 release
This commit is contained in:
parent
e32a208b7f
commit
b7e0d6f8e6
15
History.txt
15
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)
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue