diff --git a/.gemified b/.gemified index cae3df709..ddf049b80 100644 --- a/.gemified +++ b/.gemified @@ -4,6 +4,6 @@ :homepage: http://github.com/mislav/will_paginate :name: will_paginate :rubyforge_project: will-paginate -:version: 2.2.0 +:version: 2.2.1 :author: "Mislav Marohni\xC4\x87" :summary: Most awesome pagination solution for Rails diff --git a/CHANGELOG b/CHANGELOG index b63a24ca4..1137f5c3d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,12 @@ +== 2.2.1, released 2008-04-08 + +* take less risky path when monkeypatching named_scope; fix that it no longer + requires ActiveRecord::VERSION +* use strings in "respond_to?" calls to work around a bug in acts_as_ferret + stable (ugh) +* add rake release task + + == 2.2.0, released 2008-04-07 === API changes @@ -30,4 +39,5 @@ * Add "paginated_each" method for iterating through every record by loading only one page of records at the time -* Rails 2: Rescue from WillPaginate::InvalidPage error with 404 Not Found by default +* Rails 2: Rescue from WillPaginate::InvalidPage error with 404 Not Found by + default diff --git a/lib/will_paginate/version.rb b/lib/will_paginate/version.rb index 41d3e1951..00ad52bcf 100644 --- a/lib/will_paginate/version.rb +++ b/lib/will_paginate/version.rb @@ -2,7 +2,7 @@ module WillPaginate #:nodoc: module VERSION #:nodoc: MAJOR = 2 MINOR = 2 - TINY = 0 + TINY = 1 STRING = [MAJOR, MINOR, TINY].join('.') end