aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2014-07-02 12:55:09 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2014-07-02 12:55:09 -0300
commit53c845cb185036c71cc9793c4eb6bf4dc989307b (patch)
treed9b907a72f408df8e90f9621cccaf83157a3c49b /activesupport
parent1f2192e46d78ee0ba2b06373f2c24caf8440ff5b (diff)
downloadrails-53c845cb185036c71cc9793c4eb6bf4dc989307b.tar.gz
rails-53c845cb185036c71cc9793c4eb6bf4dc989307b.tar.bz2
rails-53c845cb185036c71cc9793c4eb6bf4dc989307b.zip
Preparing for 3.2.19 release
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/CHANGELOG.md10
-rw-r--r--activesupport/lib/active_support/version.rb2
2 files changed, 11 insertions, 1 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md
index e22aded195..6123be4ab4 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -1,3 +1,13 @@
+## Rails 3.2.19 (Jul 2, 2014) ##
+
+* Make sure Active Support configurations are applied correctly.
+
+ Before this change configuration set using `config.active_support`
+ would not be set.
+
+ *Rafael Mendonça França*
+
+
## Rails 3.2.18 (May 6, 2014) ##
* No changes.
diff --git a/activesupport/lib/active_support/version.rb b/activesupport/lib/active_support/version.rb
index 10c9fca86c..6fdf950bc0 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 = 18
+ TINY = 19
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')