Version 1.0.1

This commit is contained in:
Akira Matsuda 2017-01-19 10:10:14 +09:00
parent 8bc8bb2560
commit 044f53e74f
5 changed files with 17 additions and 4 deletions

View File

@ -1,3 +1,16 @@
## 1.0.1
### Bug Fixes:
* Added `required_ruby_version` to the gemspec #847 [@timoschilling]
* Fixed a regression where `per(nil)` uses `max_per_page` instead of `default_per_page` #813 [@merqlove]
* Fixed a regression where passing a String to `per()` aborts with ArgumentError #849 [@rafaelgonzalez]
* Fixed a bug where calling deprecated `max_pages_per` caused an Error on Rails 4 #852 [@tsuwatch]
## 1.0.0
### Breaking Changes:

View File

@ -1,6 +1,6 @@
# frozen_string_literal: true
module Kaminari
module Actionview
VERSION = '1.0.0'
VERSION = '1.0.1'
end
end

View File

@ -1,6 +1,6 @@
# frozen_string_literal: true
module Kaminari
module Activerecord
VERSION = '1.0.0'
VERSION = '1.0.1'
end
end

View File

@ -1,6 +1,6 @@
# frozen_string_literal: true
module Kaminari
module Core
VERSION = '1.0.0'
VERSION = '1.0.1'
end
end

View File

@ -1,4 +1,4 @@
# frozen_string_literal: true
module Kaminari
VERSION = '1.0.0'
VERSION = '1.0.1'
end