Version 0.15.1

This commit is contained in:
Akira Matsuda 2014-01-15 23:06:15 +09:00
parent 6aef3a5613
commit 918b6d5ac5
3 changed files with 12 additions and 3 deletions

View File

@ -1,3 +1,12 @@
== 0.15.1
* page_method_name option was not working in 0.15.0 #481 [mauriciopasquier]
* Use the mongoid criteria #length method to cache the count of the collection
per criteria #484 [camallen]
* Don't inherit host, port, and protocol from the given params
== 0.15.0
* Allow count, total count to pass parameters to super #193 [bsimpson]

View File

@ -6,10 +6,10 @@ Gem::Specification.new do |s|
s.name = 'kaminari'
s.version = Kaminari::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Akira Matsuda', 'Zachary Scott', 'Yuki Nishijima', 'Hiroshi Shibata']
s.authors = ['Akira Matsuda', 'Yuki Nishijima', 'Zachary Scott', 'Hiroshi Shibata']
s.email = ['ronnie@dio.jp']
s.homepage = 'https://github.com/amatsuda/kaminari'
s.summary = 'A pagination engine plugin for Rails 3+ or other modern frameworks'
s.summary = 'A pagination engine plugin for Rails 3+ and other modern frameworks'
s.description = 'Kaminari is a Scope & Engine based, clean, powerful, agnostic, customizable and sophisticated paginator for Rails 3+'
s.rubyforge_project = 'kaminari'

View File

@ -1,3 +1,3 @@
module Kaminari
VERSION = '0.15.0'
VERSION = '0.15.1'
end