Skip to content

Commit

Permalink
Bump version to 1.2.1
Browse files Browse the repository at this point in the history
Signed-off-by: David Celis <[email protected]>
  • Loading branch information
davidcelis committed Feb 23, 2015
1 parent 8d45da6 commit f55068f
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions lib/api-versions/version.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
module ApiVersions
MAJOR = 1
MINOR = 2
PATCH = 0
PRE = nil
class Version
MAJOR = 1
MINOR = 2
PATCH = 1

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

VERSION = Version.to_s
end

0 comments on commit f55068f

Please sign in to comment.