aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2007-09-29 22:18:26 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2007-09-29 22:18:26 +0000
commitf18356edb728522fcd3b6a00f11b29fd3bff0577 (patch)
tree9422cdb0b07246e6df70dc081bf07a8e3e6610ff /activesupport
parent752721c0729bd8230d9cd0688694c36f71db03f0 (diff)
downloadrails-f18356edb728522fcd3b6a00f11b29fd3bff0577.tar.gz
rails-f18356edb728522fcd3b6a00f11b29fd3bff0577.tar.bz2
rails-f18356edb728522fcd3b6a00f11b29fd3bff0577.zip
Updated CHANGELOGs. They need to be filtered for duplicates
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7685 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/CHANGELOG25
1 files changed, 18 insertions, 7 deletions
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index 70fffe1775..272be35724 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*2.0.0 [Preview Release]* (September 29th, 2007)
* Alias Object#send to send! for Ruby 1.9 forward compatibility. [Jeremy Kemper]
@@ -162,14 +162,8 @@
* Hash#to_query CGI-escapes its keys. [Jeremy Kemper]
-* Deprecation: warn on stderr if RAILS_DEFAULT_LOGGER isn't set yet. [Jeremy Kemper]
-
* Optimize Class Inheritable Attributes so that unnecessary hashes are not created. Closes #7472 [Bruce Perens]
-* Ruby 1.8-cvs and 1.9 define a private Time#to_date that overrides Active Support. Make it public to preserve compatibility. [Jeremy Kemper]
-
-* Full test coverage for Inflector. #7228 [Dan Kubb]
-
* :db format for Date#to_s [Jeremy Kemper]
Date.new(2007, 1, 27).to_s(:db) # => '2007-01-27'
@@ -196,6 +190,23 @@
* Make 1.months and friends accurate by introducing a Duration class. #6835 [eventualbuddha]
+*1.4.2* (March 12th, 2007)
+
+* Ruby 1.8.6 and 1.9 define private Time#to_date and #to_datetime; make them
+public for compatibility. [Jeremy Kemper]
+
+* Deprecation: warn on stderr if RAILS_DEFAULT_LOGGER isn't set yet. [Jeremy Kemper]
+
+
+*1.4.1* (February 5th, 2007)
+
+* Optimize Class Inheritable Attributes so that unnecessary hashes are not created. Closes #7472 [Bruce Perens]
+
+* Added :instance_writer option to #mattr_writer/accessor, #cattr_writer/accessor, and #class_inheritable_writer to skip the creation of the instance writer. [Rick]
+
+* Full test coverage for Inflector. #7228 [Dan Kubb]
+
+
*1.4.0* (January 16th, 2007)
* Document Inflector.ordinalize and merge docs from String inflections. #7023 [smeade]