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.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/actioncable/lib/action_cable/gem_version.rb b/actioncable/lib/action_cable/gem_version.rb
index 67adeefaff..af8277d06e 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
@@ -6,9 +8,9 @@ module ActionCable
module VERSION
MAJOR = 5
- MINOR = 0
+ MINOR = 2
TINY = 0
- PRE = "beta3"
+ PRE = "alpha"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end