Skip to content

Commit

Permalink
Prep for 0.4.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
brynary committed Feb 24, 2009
1 parent e32a208 commit b7e0d6f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
15 changes: 13 additions & 2 deletions 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)
Expand Down
2 changes: 1 addition & 1 deletion lib/webrat.rb
Expand Up @@ -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"
Expand Down

3 comments on commit b7e0d6f

@sr
Copy link
Contributor

@sr sr commented on b7e0d6f Feb 24, 2009

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Too bad you didn’t include the Sinatra fixes.
ttyl later tonight on rack-test :)

@adkron
Copy link
Contributor

@adkron adkron commented on b7e0d6f Feb 24, 2009

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So sad that the options passed to selenium isn’t going in.

@brynary
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey guys,

Sorry I wasn’t able to get the outstanding patches merged in for this release. It was very directly motivated by needing the have_selector changes released to match what we’re talking about in the latest RSpec Book beta release. There will be another release soon with the things you guys mentioned.

Cheers,

-Bryan

Please sign in to comment.