aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/lib/action_view/gem_version.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionview/lib/action_view/gem_version.rb')
-rw-r--r--actionview/lib/action_view/gem_version.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/actionview/lib/action_view/gem_version.rb b/actionview/lib/action_view/gem_version.rb
index 5fc4f3f1b9..ff7f2bb853 100644
--- a/actionview/lib/action_view/gem_version.rb
+++ b/actionview/lib/action_view/gem_version.rb
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
module ActionView
# Returns the version of the currently loaded Action View as a <tt>Gem::Version</tt>
def self.gem_version
@@ -6,9 +8,9 @@ module ActionView
module VERSION
MAJOR = 5
- MINOR = 1
+ MINOR = 2
TINY = 0
- PRE = "alpha"
+ PRE = "beta2"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end