diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2012-02-22 12:03:13 -0800 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2012-02-22 12:03:13 -0800 |
commit | 4bcd437f760cfaf310fece0fe36abe55bccba42b (patch) | |
tree | a3cafa6467d32d2ba6e5341dd822e16418d1e10f /activemodel/lib | |
parent | 82d6dedc7acb98c7c7671d34e47ea95c739fd356 (diff) | |
download | rails-4bcd437f760cfaf310fece0fe36abe55bccba42b.tar.gz rails-4bcd437f760cfaf310fece0fe36abe55bccba42b.tar.bz2 rails-4bcd437f760cfaf310fece0fe36abe55bccba42b.zip |
updating RAILS_VERSION
Diffstat (limited to 'activemodel/lib')
-rw-r--r-- | activemodel/lib/active_model/version.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activemodel/lib/active_model/version.rb b/activemodel/lib/active_model/version.rb index 91b566c434..c7983a89f3 100644 --- a/activemodel/lib/active_model/version.rb +++ b/activemodel/lib/active_model/version.rb @@ -2,8 +2,8 @@ module ActiveModel module VERSION #:nodoc: MAJOR = 3 MINOR = 2 - TINY = 1 - PRE = nil + TINY = 2 + PRE = "rc1" STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.') end |