Skip to content

Commit

Permalink
Add version suffix and revision
Browse files Browse the repository at this point in the history
  • Loading branch information
José Benavente committed May 10, 2022
1 parent 3876b76 commit 40a40e3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion data.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,7 @@ module RVA
YEAR = 22
MONTH = 5
DAY = 9
VERSION = "#{YEAR}.#{MONTH < 10 ? "0#{MONTH}" : MONTH}#{DAY}"
REVISION = 1
SUFFIX = 'a'
VERSION = "#{YEAR}.#{MONTH < 10 ? "0#{MONTH}" : MONTH}#{DAY}#{SUFFIX}-#{REVISION}"
end

0 comments on commit 40a40e3

Please sign in to comment.