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 1e09adbb52..c951ad16a3 100644
--- a/activesupport/lib/active_support/gem_version.rb
+++ b/activesupport/lib/active_support/gem_version.rb
@@ -7,10 +7,10 @@ module ActiveSupport
end
module VERSION
- MAJOR = 5
- MINOR = 2
+ MAJOR = 6
+ MINOR = 0
TINY = 0
- PRE = "beta2"
+ PRE = "alpha"
STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
end