Bump version to 5.0 lts

This commit is contained in:
KMY 2023-09-17 20:12:38 +09:00
parent de67336d08
commit c5ae61f1ba

View file

@ -5,13 +5,17 @@ module Mastodon
module_function module_function
def kmyblue_major def kmyblue_major
4 5
end end
def kmyblue_minor def kmyblue_minor
0 0
end end
def kmyblue_flag
'LTS'
end
def major def major
4 4
end end
@ -38,6 +42,7 @@ module Mastodon
def to_s_of_kmyblue def to_s_of_kmyblue
components = [to_a_of_kmyblue.join('.')] components = [to_a_of_kmyblue.join('.')]
components << "-#{kmyblue_flag}" if kmyblue_flag.present?
components.join components.join
end end