Skip to content

Commit d2082ce

Browse files
committed
Bump version to 4.0.0
Signed-off-by: David Celis <[email protected]>
1 parent 10e4fbc commit d2082ce

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,12 @@ This follows the proposed [RFC-5988](http://tools.ietf.org/html/rfc5988) standar
1010
In your `Gemfile`:
1111

1212
```ruby
13-
# Requires Rails (Rails-API is also supported) or Grape.
13+
# Requires Rails (Rails-API is also supported), or Grape
14+
# v0.10.0 or later. If you're on an earlier version of
15+
# Grape, use api-pagination ~> 3.1
1416
gem 'rails', '>= 3.0.0'
1517
gem 'rails-api'
16-
gem 'grape'
18+
gem 'grape', '>= 0.10.0'
1719

1820
# Then choose your preferred paginator from the following:
1921
gem 'kaminari'

lib/api-pagination/version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module ApiPagination
22
class Version
3-
MAJOR = 3
4-
MINOR = 1
3+
MAJOR = 4
4+
MINOR = 0
55
PATCH = 0
66

77
def self.to_s

0 commit comments

Comments
 (0)