diff --git a/app/models/etmodel/version.rb b/app/models/etmodel/version.rb index a75251e97f..a1ce260f0b 100644 --- a/app/models/etmodel/version.rb +++ b/app/models/etmodel/version.rb @@ -6,12 +6,12 @@ module Version MAJOR = 2024 # Month of release. - MINOR = 10 + MINOR = 11 # Day of release. This is not used in version numbers but is required to build the DATE_VERSION # so that we know the exact date. This should be the day on which the minor version was released, # not incremented for each small change. - DAY = 1 + DAY = 5 STRING = format('%d.%02d', major: MAJOR, minor: MINOR) DATE = Date.new(MAJOR, MINOR, DAY)