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 /activesupport/lib/active_support | |
parent | 82d6dedc7acb98c7c7671d34e47ea95c739fd356 (diff) | |
download | rails-4bcd437f760cfaf310fece0fe36abe55bccba42b.tar.gz rails-4bcd437f760cfaf310fece0fe36abe55bccba42b.tar.bz2 rails-4bcd437f760cfaf310fece0fe36abe55bccba42b.zip |
updating RAILS_VERSION
Diffstat (limited to 'activesupport/lib/active_support')
-rw-r--r-- | activesupport/lib/active_support/version.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/version.rb b/activesupport/lib/active_support/version.rb index ef2c69e695..3ba71473c3 100644 --- a/activesupport/lib/active_support/version.rb +++ b/activesupport/lib/active_support/version.rb @@ -2,8 +2,8 @@ module ActiveSupport module VERSION #:nodoc: MAJOR = 3 MINOR = 2 - TINY = 1 - PRE = nil + TINY = 2 + PRE = "rc1" STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.') end |