public
Fork of mislav/will_paginate
Description: Most awesome pagination solution for Rails
Homepage: http://github.com/mislav/will_paginate/wikis
Clone URL: git://github.com/technoweenie/will_paginate.git
Search Repo:
bump to 2.2.1 and release
mislav (author)
Mon Apr 07 15:28:25 -0700 2008
commit  5b0e0b8d7d8c2096c157212447a6f1925f6ae295
tree    c62ef859b237d40134409ff96e2422cff1e12e46
parent  674205dc34db211f0d0722bd19b03fac5f691f74
...
4
5
6
7
 
8
9
...
4
5
6
 
7
8
9
0
@@ -4,7 +4,7 @@
0
 :homepage: http://github.com/mislav/will_paginate
0
 :name: will_paginate
0
 :rubyforge_project: will-paginate
0
-:version: 2.2.0
0
+:version: 2.2.1
0
 :author: "Mislav Marohni\xC4\x87"
0
 :summary: Most awesome pagination solution for Rails
...
 
 
 
 
 
 
 
 
 
1
2
3
...
30
31
32
33
 
 
...
1
2
3
4
5
6
7
8
9
10
11
12
...
39
40
41
 
42
43
0
@@ -1,3 +1,12 @@
0
+== 2.2.1, released 2008-04-08
0
+
0
+* take less risky path when monkeypatching named_scope; fix that it no longer
0
+ requires ActiveRecord::VERSION
0
+* use strings in "respond_to?" calls to work around a bug in acts_as_ferret
0
+ stable (ugh)
0
+* add rake release task
0
+
0
+
0
 == 2.2.0, released 2008-04-07
0
 
0
 === API changes
0
@@ -30,5 +39,6 @@
0
     
0
 * Add "paginated_each" method for iterating through every record by loading only
0
   one page of records at the time
0
-* Rails 2: Rescue from WillPaginate::InvalidPage error with 404 Not Found by default
0
+* Rails 2: Rescue from WillPaginate::InvalidPage error with 404 Not Found by
0
+ default
...
2
3
4
5
 
6
7
8
...
2
3
4
 
5
6
7
8
0
@@ -2,7 +2,7 @@
0
   module VERSION #:nodoc:
0
     MAJOR = 2
0
     MINOR = 2
0
- TINY = 0
0
+ TINY = 1
0
 
0
     STRING = [MAJOR, MINOR, TINY].join('.')
0
   end

Comments

    No one has commented yet.