Files
discourse/lib/version.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
463 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2013-02-05 14:16:51 -05:00
module Discourse
2013-08-07 18:47:04 -04:00
# work around reloader
unless defined?(::Discourse::VERSION)
module VERSION #:nodoc:
# Use the `version_bump:*` rake tasks to update this value
STRING = "2026.2.0-latest"
2013-02-05 14:16:51 -05:00
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
2013-02-05 14:16:51 -05:00
end
end