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, 2 insertions, 2 deletions
diff --git a/activejob/lib/active_job/gem_version.rb b/activejob/lib/active_job/gem_version.rb
index 2545e09845..d41c916085 100644
--- a/activejob/lib/active_job/gem_version.rb
+++ b/activejob/lib/active_job/gem_version.rb
@@ -1,5 +1,5 @@
module ActiveJob
- # Returns the version of the currently loaded Active Job as a <tt>Gem::Version</tt>
+ # Returns the version of the currently loaded ActiveJob as a <tt>Gem::Version</tt>
def self.gem_version
Gem::Version.new VERSION::STRING
end
@@ -8,7 +8,7 @@ module ActiveJob
MAJOR = 4
MINOR = 2
TINY = 0
- PRE = "alpha"
+ PRE = "beta1"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end