From 125dfdfcf7aa990d49817ef84202f6a374804882 Mon Sep 17 00:00:00 2001 From: Aaron Patterson Date: Mon, 23 Jul 2012 14:26:16 -0700 Subject: updating changelogs --- activesupport/CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'activesupport') diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md index d20e011f0a..4c5eaecdea 100644 --- a/activesupport/CHANGELOG.md +++ b/activesupport/CHANGELOG.md @@ -1,3 +1,11 @@ +## Rails 3.2.7 (unreleased) + +* Hash#fetch(fetch) is not the same as doing hash[key] +* adds a missing require [fixes #6896] +* make sure the inflection rules are loaded when cherry-picking active_support/core_ext/string/inflections.rb [fixes #6884] +* Merge pull request #6857 from rsutphin/as_core_ext_time_missing_require +* bump AS deprecation_horizon to 4.0 + ## Rails 3.2.6 (Jun 12, 2012) * No changes. -- cgit v1.2.3 From 753c546df4c8d639a8402552bdd5c9d077610f6c Mon Sep 17 00:00:00 2001 From: Aaron Patterson Date: Mon, 23 Jul 2012 14:41:02 -0700 Subject: updating the version --- activesupport/lib/active_support/version.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'activesupport') diff --git a/activesupport/lib/active_support/version.rb b/activesupport/lib/active_support/version.rb index a54ce0b6cb..639c7cd95d 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 = 6 - PRE = nil + TINY = 7 + PRE = "rc1" STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.') end -- cgit v1.2.3 From 21bcac1998c4818bce203d9b1df3940172465f66 Mon Sep 17 00:00:00 2001 From: Aaron Patterson Date: Thu, 26 Jul 2012 14:26:23 -0700 Subject: bumping to 3.2.7 --- activesupport/lib/active_support/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'activesupport') diff --git a/activesupport/lib/active_support/version.rb b/activesupport/lib/active_support/version.rb index 639c7cd95d..02c09a3ff2 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 = 7 - PRE = "rc1" + PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.') end -- cgit v1.2.3 From d1b9cf2d48b4e58da2da563107dd2783e326e287 Mon Sep 17 00:00:00 2001 From: Aaron Patterson Date: Thu, 26 Jul 2012 14:34:31 -0700 Subject: updating release date --- activesupport/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'activesupport') diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md index 4c5eaecdea..8f53a57423 100644 --- a/activesupport/CHANGELOG.md +++ b/activesupport/CHANGELOG.md @@ -1,4 +1,4 @@ -## Rails 3.2.7 (unreleased) +## Rails 3.2.7 (Jul 26, 2012) * Hash#fetch(fetch) is not the same as doing hash[key] * adds a missing require [fixes #6896] -- cgit v1.2.3