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