aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/lib/active_job/gem_version.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activejob/lib/active_job/gem_version.rb')
-rw-r--r--activejob/lib/active_job/gem_version.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/activejob/lib/active_job/gem_version.rb b/activejob/lib/active_job/gem_version.rb
index bf81f37e81..49dfd4095e 100644
--- a/activejob/lib/active_job/gem_version.rb
+++ b/activejob/lib/active_job/gem_version.rb
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
module ActiveJob
# Returns the version of the currently loaded Active Job as a <tt>Gem::Version</tt>
def self.gem_version
@@ -8,7 +10,7 @@ module ActiveJob
MAJOR = 5
MINOR = 2
TINY = 0
- PRE = "alpha"
+ PRE = "beta2"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end