aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/version.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/lib/active_support/version.rb')
-rw-r--r--activesupport/lib/active_support/version.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/activesupport/lib/active_support/version.rb b/activesupport/lib/active_support/version.rb
index 9d2cf13260..690fc7f0fc 100644
--- a/activesupport/lib/active_support/version.rb
+++ b/activesupport/lib/active_support/version.rb
@@ -1,10 +1,10 @@
module ActiveSupport
module VERSION #:nodoc:
MAJOR = 3
- MINOR = 0
+ MINOR = 1
TINY = 0
- BUILD = "rc"
+ PRE = "beta"
- STRING = [MAJOR, MINOR, TINY, BUILD].join('.')
+ STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end
end