aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2010-08-29 22:06:48 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2010-08-29 22:06:48 -0700
commitb8619426916fdad32ab743f1c0b42dd19d4ebe71 (patch)
treee8e6435bfc2a180ae2f01fe231870feb17896b40 /activesupport/CHANGELOG
parentef572cad0a0dcee143c70cc0c675d69e39e01633 (diff)
downloadrails-b8619426916fdad32ab743f1c0b42dd19d4ebe71.tar.gz
rails-b8619426916fdad32ab743f1c0b42dd19d4ebe71.tar.bz2
rails-b8619426916fdad32ab743f1c0b42dd19d4ebe71.zip
Update CHANGELOGs for 3.0 release and upcoming 3.1
Diffstat (limited to 'activesupport/CHANGELOG')
-rw-r--r--activesupport/CHANGELOG25
1 files changed, 5 insertions, 20 deletions
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index f05cdcb8f4..84cdc22e40 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,16 +1,13 @@
-*Rails 3.0.0 (unreleased)*
-
-* Implemented String#strip_heredoc. [fxn]
-
-* Pluggable cache stores: setting config.cache_store = "custom_store" will require 'active_support/cache/custom_store' and look for the CustomStore constant. #5486 [Mike Perham]
+*Rails 3.1.0 (unreleased)*
+* No changes
-*Rails 3.0.0 [release candidate 2] (August 23rd, 2010)*
-* No changes
+*Rails 3.0.0 (August 29, 2010)*
+* Implemented String#strip_heredoc. [fxn]
-*Rails 3.0.0 [release candidate] (July 26th, 2010)*
+* Pluggable cache stores: setting config.cache_store = "custom_store" will require 'active_support/cache/custom_store' and look for the CustomStore constant. #5486 [Mike Perham]
* Removed Object#returning, Object#tap should be used instead. [Santiago Pastorino]
@@ -30,9 +27,6 @@
* Date#since, #ago, #beginning_of_day, #end_of_day, and #xmlschema honor now the user time zone if set. [Geoff Buesing]
-
-*Rails 3.0.0 [beta 4] (June 8th, 2010)*
-
* Extracted String#truncate from TextHelper#truncate [DHH]
* Ruby 1.9: support UTF-8 case folding. #4595 [Norman Clarke]
@@ -85,18 +79,12 @@
* JSON: encode objects that don't have a native JSON representation using to_hash, if available, instead of instance_values (the old fallback) or to_s (other encoders' default). Encode BigDecimal and Regexp encode as strings to conform with other encoders. Try to transcode non-UTF-8 strings. [Jeremy Kemper]
-
-*Rails 3.0.0 [beta 3] (April 13th, 2010)*
-
* HashWithIndifferentAccess: remove inherited symbolize_keys! since its keys are always strings. [Santiago Pastorino]
* Improve transliteration quality. #4374 [Norman Clarke]
* Speed up and add Ruby 1.9 support for ActiveSupport::Multibyte::Chars#tidy_bytes. #4350 [Norman Clarke]
-
-*Rails 3.0.0 [beta 2] (April 1st, 2010)*
-
* Reduced load time by deferring configuration of classes using
ActiveSupport::on_load(:component_name) [YK]
@@ -108,9 +96,6 @@
* JSON backend for YAJL. Preferred if available. #2666 [Brian Lopez]
-
-*Rails 3.0.0 [beta 1] (February 4, 2010)*
-
* Introduce class_attribute to declare inheritable class attributes. Writing an attribute on a subclass behaves just like overriding the superclass reader method. Unifies and replaces most usage of cattr_accessor, class_inheritable_attribute, superclass_delegating_attribute, and extlib_inheritable_attribute. [Jeremy Kemper, Yehuda Katz]
* Time#- with a DateTime argument behaves the same as with a Time argument, i.e. returns the difference between self and arg as a Float #3476 [Geoff Buesing]