diff --git a/CHANGELOG.rdoc b/CHANGELOG.rdoc index ebedcf046..79a18e8db 100644 --- a/CHANGELOG.rdoc +++ b/CHANGELOG.rdoc @@ -1,3 +1,9 @@ +== 2.3.5, released 2008-10-07 + +* update the backported named_scope implementation for Rails versions older than 2.1 +* break out of scope of paginated_each() yielded block when used on named scopes +* fix paginate(:from) + == 2.3.4, released 2008-09-16 * Removed gem dependency to Active Support (causes trouble with vendored rails). diff --git a/lib/will_paginate/version.rb b/lib/will_paginate/version.rb index cb81bdbdb..99f323822 100644 --- a/lib/will_paginate/version.rb +++ b/lib/will_paginate/version.rb @@ -2,7 +2,7 @@ module WillPaginate module VERSION MAJOR = 2 MINOR = 3 - TINY = 4 + TINY = 5 STRING = [MAJOR, MINOR, TINY].join('.') end diff --git a/will_paginate.gemspec b/will_paginate.gemspec index 8a4f2a45d..75631e20b 100644 --- a/will_paginate.gemspec +++ b/will_paginate.gemspec @@ -1,7 +1,7 @@ Gem::Specification.new do |s| s.name = 'will_paginate' - s.version = '2.3.4' - s.date = '2008-09-16' + s.version = '2.3.5' + s.date = '2008-10-07' s.summary = "Most awesome pagination solution for Rails" s.description = "The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates."