We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5448e0 commit 51cba94Copy full SHA for 51cba94
app/models/etmodel/version.rb
@@ -6,12 +6,12 @@ module Version
6
MAJOR = 2024
7
8
# Month of release.
9
- MINOR = 01
+ MINOR = 03
10
11
# Day of release. This is not used in version numbers but is required to build the DATE_VERSION
12
# so that we know the exact date. This should be the day on which the minor version was released,
13
# not incremented for each small change.
14
- DAY = 3
+ DAY = 7
15
16
STRING = format('%<major>d.%<minor>02d', major: MAJOR, minor: MINOR)
17
DATE = Date.new(MAJOR, MINOR, DAY)
0 commit comments