diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-07-08 16:47:00 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-07-12 21:06:50 -0300 |
commit | facfc24f256d8367f33a62e3bbea6c0f8c698c1f (patch) | |
tree | 36c41ad6b934ce1cacf907fac029b4a545fe768e /activesupport | |
parent | 714cb5a436e72d00ca0e5e6efa4b789c3e6f5b04 (diff) | |
download | rails-facfc24f256d8367f33a62e3bbea6c0f8c698c1f.tar.gz rails-facfc24f256d8367f33a62e3bbea6c0f8c698c1f.tar.bz2 rails-facfc24f256d8367f33a62e3bbea6c0f8c698c1f.zip |
Preparing for 3.2.14.rc1 release
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/CHANGELOG.md | 2 | ||||
-rw-r--r-- | activesupport/lib/active_support/version.rb | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md index 20579e44d3..b27b6194e6 100644 --- a/activesupport/CHANGELOG.md +++ b/activesupport/CHANGELOG.md @@ -1,4 +1,4 @@ -## unreleased ## +## Rails 3.2.14.rc1 (Jul 8, 2013) ## * Make `Time.at_with_coercion` retain the second fraction and return local time. diff --git a/activesupport/lib/active_support/version.rb b/activesupport/lib/active_support/version.rb index 03b1e511d9..9f81b63b36 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 = 13 - PRE = nil + TINY = 14 + PRE = "rc1" STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.') end |