Bump version, improve how version is stored for better commit history (#2526)
parent
b17d7a1f85
commit
e21b9c875e
@ -1,5 +1,31 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
module Mastodon
|
||||
VERSION = '1.2.2'
|
||||
module Version
|
||||
module_function
|
||||
|
||||
def major
|
||||
1
|
||||
end
|
||||
|
||||
def minor
|
||||
3
|
||||
end
|
||||
|
||||
def patch
|
||||
0
|
||||
end
|
||||
|
||||
def pre
|
||||
nil
|
||||
end
|
||||
|
||||
def to_a
|
||||
[major, minor, patch, pre].compact
|
||||
end
|
||||
|
||||
def to_s
|
||||
to_a.join('.')
|
||||
end
|
||||
end
|
||||
end
|
||||
|
Loading…
Reference in new issue