aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model/version.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activemodel/lib/active_model/version.rb')
-rw-r--r--activemodel/lib/active_model/version.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/activemodel/lib/active_model/version.rb b/activemodel/lib/active_model/version.rb
index f2f4b15520..23ba42bf35 100644
--- a/activemodel/lib/active_model/version.rb
+++ b/activemodel/lib/active_model/version.rb
@@ -1,10 +1,10 @@
module ActiveModel
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