0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-06 13:08:40 +08:00
discourse/lib/version.rb
github-actions[bot] 06d03da34c
DEV: Begin development of v2026.6.0-latest (#40362)
Merging this will trigger the creation of a `release/2026.5` branch on
the preceding commit.

Co-authored-by: discoursebot <team@discourse.org>
2026-05-28 10:56:24 +02:00

20 lines
463 B
Ruby
Vendored

# frozen_string_literal: true
module Discourse
# work around reloader
unless defined?(::Discourse::VERSION)
module VERSION #:nodoc:
# Use the `version_bump:*` rake tasks to update this value
STRING = "2026.6.0-latest"
PARTS = STRING.split(".")
private_constant :PARTS
MAJOR = PARTS[0].to_i
MINOR = PARTS[1].to_i
TINY = PARTS[2].to_i
PRE = nil
DEV = PARTS[2]&.split("-", 2)&.[](1)
end
end
end