Skip to content

Commit

Permalink
v2.3.5 bugfix release
Browse files Browse the repository at this point in the history
  • Loading branch information
mislav committed Oct 7, 2008
1 parent 8a64e37 commit f161d99
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions 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).
Expand Down
2 changes: 1 addition & 1 deletion lib/will_paginate/version.rb
Expand Up @@ -2,7 +2,7 @@ module WillPaginate
module VERSION
MAJOR = 2
MINOR = 3
TINY = 4
TINY = 5

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
4 changes: 2 additions & 2 deletions 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."
Expand Down

0 comments on commit f161d99

Please sign in to comment.