diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-05-05 13:17:18 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-05-06 11:33:10 -0300 |
commit | 4e8f1d258854d0d6a6bff5955ef1aeb4fbb1dc00 (patch) | |
tree | 10f425d092725127d9c6ada40c65628473521740 /activesupport | |
parent | 0f3b7d1a319383f743f9938e1eed00f0fba7a367 (diff) | |
download | rails-4e8f1d258854d0d6a6bff5955ef1aeb4fbb1dc00.tar.gz rails-4e8f1d258854d0d6a6bff5955ef1aeb4fbb1dc00.tar.bz2 rails-4e8f1d258854d0d6a6bff5955ef1aeb4fbb1dc00.zip |
Preparing for 3.2.18 release
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/CHANGELOG.md | 15 | ||||
-rw-r--r-- | activesupport/lib/active_support/version.rb | 2 |
2 files changed, 16 insertions, 1 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md index 29f7db53eb..e22aded195 100644 --- a/activesupport/CHANGELOG.md +++ b/activesupport/CHANGELOG.md @@ -1,3 +1,18 @@ +## Rails 3.2.18 (May 6, 2014) ## + +* No changes. + + +## Rails 3.2.17 (Feb 18, 2014) ## + +* No changes. + + +## Rails 3.2.16 (Dec 3, 2013) ## + +* No changes. + + ## Rails 3.2.15 (Oct 16, 2013) ## * Fix ActiveSupport::Cache::FileStore#cleanup to no longer rely on missing each_key method. diff --git a/activesupport/lib/active_support/version.rb b/activesupport/lib/active_support/version.rb index 95faab1dd6..10c9fca86c 100644 --- a/activesupport/lib/active_support/version.rb +++ b/activesupport/lib/active_support/version.rb @@ -2,7 +2,7 @@ module ActiveSupport module VERSION #:nodoc: MAJOR = 3 MINOR = 2 - TINY = 17 + TINY = 18 PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.') |