Skip to content

Commit 3f2dbf7

Browse files
committed
Bump version to 2.1.0
Signed-off-by: David Celis <[email protected]>
1 parent b966af2 commit 3f2dbf7

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

lib/api-pagination/version.rb

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

6-
VERSION = [MAJOR, MINOR, PATCH].join('.')
7+
def self.to_s
8+
[MAJOR, MINOR, PATCH].join('.')
9+
end
10+
end
11+
12+
VERSION = Version.to_s
713
end

0 commit comments

Comments
 (0)