diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2012-01-20 17:44:32 +0100 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2012-01-20 17:44:32 +0100 |
commit | f36dcaf488b4357a52f43e3912628428956d351f (patch) | |
tree | a2b50f4cd3acacb85677be52714170a464772991 /activesupport | |
parent | 6c656761ec951f74dcb844f46fe6839af3baa1d4 (diff) | |
download | rails-f36dcaf488b4357a52f43e3912628428956d351f.tar.gz rails-f36dcaf488b4357a52f43e3912628428956d351f.tar.bz2 rails-f36dcaf488b4357a52f43e3912628428956d351f.zip |
Preparing for 3.2.0 release
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/CHANGELOG.md | 2 | ||||
-rw-r--r-- | activesupport/lib/active_support/version.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md index fe4c64aed0..db0832e741 100644 --- a/activesupport/CHANGELOG.md +++ b/activesupport/CHANGELOG.md @@ -1,4 +1,4 @@ -## Rails 3.2.0 (unreleased) ## +## Rails 3.2.0 (January 20, 2012) ## * ActiveSupport::Base64 is deprecated in favor of ::Base64. *Sergey Nartimov* diff --git a/activesupport/lib/active_support/version.rb b/activesupport/lib/active_support/version.rb index 7a9037ee32..0fee9e5c31 100644 --- a/activesupport/lib/active_support/version.rb +++ b/activesupport/lib/active_support/version.rb @@ -3,7 +3,7 @@ module ActiveSupport MAJOR = 3 MINOR = 2 TINY = 0 - PRE = "rc2" + PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.') end |