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.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/gem_version.rb b/activesupport/lib/active_support/gem_version.rb
index 79b30abd34..74f2d8dd4b 100644
--- a/activesupport/lib/active_support/gem_version.rb
+++ b/activesupport/lib/active_support/gem_version.rb
@@ -6,9 +6,9 @@ module ActiveSupport
module VERSION
MAJOR = 5
- MINOR = 0
+ MINOR = 1
TINY = 0
- PRE = "rc1"
+ PRE = "alpha"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end