i love not testing code

This commit is contained in:
Jill 2023-01-07 17:39:20 +03:00
parent 2a33ec3621
commit 7692564938
1 changed files with 13 additions and 13 deletions

View File

@ -68,18 +68,18 @@ module CrystalGauntlet::Versions
end
# shorthands because i hate typing 3 words for this
V1_0 = SemanticVersion.new(1, 0)
V1_1 = SemanticVersion.new(1, 1)
V1_2 = SemanticVersion.new(1, 2)
V1_3 = SemanticVersion.new(1, 3)
V1_4 = SemanticVersion.new(1, 4)
V1_5 = SemanticVersion.new(1, 5)
V1_6 = SemanticVersion.new(1, 6)
V1_7 = SemanticVersion.new(1, 7)
V1_8 = SemanticVersion.new(1, 8)
V1_9 = SemanticVersion.new(1, 9)
V2_0 = SemanticVersion.new(2, 0)
V2_1 = SemanticVersion.new(2, 1)
V1_0 = SemanticVersion.new(1, 0, 0)
V1_1 = SemanticVersion.new(1, 1, 0)
V1_2 = SemanticVersion.new(1, 2, 0)
V1_3 = SemanticVersion.new(1, 3, 0)
V1_4 = SemanticVersion.new(1, 4, 0)
V1_5 = SemanticVersion.new(1, 5, 0)
V1_6 = SemanticVersion.new(1, 6, 0)
V1_7 = SemanticVersion.new(1, 7, 0)
V1_8 = SemanticVersion.new(1, 8, 0)
V1_9 = SemanticVersion.new(1, 9, 0)
V2_0 = SemanticVersion.new(2, 0, 0)
V2_1 = SemanticVersion.new(2, 1, 0)
V2_11 = SemanticVersion.new(2, 1, 1)
V2_2 = SemanticVersion.new(2, 2)
V2_2 = SemanticVersion.new(2, 2, 0)
end