Skip to content

Commit

Permalink
Bump version to 2.1.0
Browse files Browse the repository at this point in the history
Signed-off-by: David Celis <[email protected]>
  • Loading branch information
davidcelis committed Feb 2, 2014
1 parent b966af2 commit 3f2dbf7
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions lib/api-pagination/version.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
module ApiPagination
MAJOR = 2
MINOR = 0
PATCH = 1
class Version
MAJOR = 2
MINOR = 1
PATCH = 0

VERSION = [MAJOR, MINOR, PATCH].join('.')
def self.to_s
[MAJOR, MINOR, PATCH].join('.')
end
end

VERSION = Version.to_s
end

0 comments on commit 3f2dbf7

Please sign in to comment.