aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/gem_version.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/lib/active_support/gem_version.rb')
-rw-r--r--activesupport/lib/active_support/gem_version.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/activesupport/lib/active_support/gem_version.rb b/activesupport/lib/active_support/gem_version.rb
index bc7933e38b..7068f09d87 100644
--- a/activesupport/lib/active_support/gem_version.rb
+++ b/activesupport/lib/active_support/gem_version.rb
@@ -5,10 +5,10 @@ module ActiveSupport
end
module VERSION
- MAJOR = 4
- MINOR = 2
+ MAJOR = 5
+ MINOR = 0
TINY = 0
- PRE = "beta4"
+ PRE = "alpha"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end