1
0
Fork 0
mirror of https://github.com/kaminari/kaminari.git synced 2022-11-09 13:44:37 -05:00

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 ## 1.0.0
### Breaking Changes: ### Breaking Changes:

View file

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

View file

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

View file

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

View file

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