0
0
Fork 0

Bump to 1.5.0rc1 (#4318)

This commit is contained in:
Eugen Rochko 2017-07-24 16:21:08 +02:00 committed by GitHub
parent 467456f7a1
commit a549d1ae6b
3 changed files with 8 additions and 5 deletions

View file

@ -9,23 +9,27 @@ module Mastodon
end
def minor
4
5
end
def patch
7
0
end
def pre
nil
end
def flags
'rc1'
end
def to_a
[major, minor, patch, pre].compact
end
def to_s
to_a.join('.')
[to_a.join('.'), flags].join
end
end
end