Skip to content

Commit

Permalink
Setting version to 0.1.0.beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
etki committed Aug 4, 2017
1 parent 1aebddd commit eef39e3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/mapper/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ class Version
MAJOR = 0
MINOR = 1
PATCH = 0
VERSION = "#{MAJOR}.#{MINOR}.#{PATCH}".freeze
CLASSIFIER = 'beta'.freeze
PRERELEASE_NUMBER = '1'.freeze
CHUNKS = [MAJOR, MINOR, PATCH, CLASSIFIER, PRERELEASE_NUMBER].freeze
VERSION = CHUNKS.reject(&:nil?).join('.').freeze
end
end
end
Expand Down

0 comments on commit eef39e3

Please sign in to comment.