diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2009-03-15 22:06:50 -0500 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2009-03-15 22:06:50 -0500 |
commit | 73fc42cc0b5e94541480032c2941a50edd4080c2 (patch) | |
tree | dbec805ec47921aae6ef179f42b541594b44b01d /activesupport | |
parent | 5f10533949457e3797c8f0b51eb30a9268bceb4d (diff) | |
download | rails-73fc42cc0b5e94541480032c2941a50edd4080c2.tar.gz rails-73fc42cc0b5e94541480032c2941a50edd4080c2.tar.bz2 rails-73fc42cc0b5e94541480032c2941a50edd4080c2.zip |
Prepare for final 2.3 release
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/CHANGELOG | 8 | ||||
-rw-r--r-- | activesupport/lib/active_support/version.rb | 2 |
2 files changed, 2 insertions, 8 deletions
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG index 8c6e724606..ab40e1a17a 100644 --- a/activesupport/CHANGELOG +++ b/activesupport/CHANGELOG @@ -1,11 +1,8 @@ -*Edge* +*2.3.2 [Final] (March 15, 2009)* * XmlMini supports LibXML and Nokogiri backends. #2084, #2190 [Bart ten Brinke, Aaron Patterson] Example: XmlMini.backend = 'Nokogiri' - -*2.3.1 [RC2] (March 5, 2009)* - * Vendorize i18n 0.1.3 gem (fixes issues with incompatible character encodings in Ruby 1.9) #2038 [Akira Matsuda] * Update bundled memcache-client from 1.5.0.5 to 1.6.4.99. See http://www.mikeperham.com/2009/02/15/memcache-client-performance/ [Mike Perham] @@ -18,9 +15,6 @@ * Introduce Array.wrap(foo) to wrap the argument in an array unless it's already an array. Wraps nil as an empty array. Use instead of Array(foo) and foo.to_a since they treat String as Enumerable. [Jeremy Kemper] - -*2.3.0 [RC1] (February 1st, 2009)* - * TimeWithZone#xmlschema accepts optional fraction_digits argument [#1725 state:resolved] [Nicholas Dainty] * Object#tap shim for Ruby < 1.8.7. Similar to Object#returning, tap yields self then returns self. [Jeremy Kemper] diff --git a/activesupport/lib/active_support/version.rb b/activesupport/lib/active_support/version.rb index 8b65fffa08..30f598a8de 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 = 2 MINOR = 3 - TINY = 1 + TINY = 2 STRING = [MAJOR, MINOR, TINY].join('.') end |