diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2010-04-01 14:20:03 -0700 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2010-04-01 14:20:03 -0700 |
commit | f0364d87f03d58312bcab1b2f17b5b56b6c72653 (patch) | |
tree | ce692f6f6fe86af2bc6f0d4818ae881c7ca2df5f | |
parent | c1883e75b38be79cc547890b2c83619351da1c95 (diff) | |
download | rails-f0364d87f03d58312bcab1b2f17b5b56b6c72653.tar.gz rails-f0364d87f03d58312bcab1b2f17b5b56b6c72653.tar.bz2 rails-f0364d87f03d58312bcab1b2f17b5b56b6c72653.zip |
Release is today, yo
-rw-r--r-- | actionmailer/CHANGELOG | 3 | ||||
-rw-r--r-- | actionpack/CHANGELOG | 3 | ||||
-rw-r--r-- | activemodel/CHANGELOG | 3 | ||||
-rw-r--r-- | activesupport/CHANGELOG | 3 | ||||
-rw-r--r-- | railties/CHANGELOG | 3 |
5 files changed, 10 insertions, 5 deletions
diff --git a/actionmailer/CHANGELOG b/actionmailer/CHANGELOG index bb5c7311f3..605b18d7e9 100644 --- a/actionmailer/CHANGELOG +++ b/actionmailer/CHANGELOG @@ -1,4 +1,4 @@ -*Rails 3.0.0 [beta 2] (pending)* +*Rails 3.0.0 [beta 2] (April 1st, 2010)* * Added interceptors and observers from Mail [ML] @@ -7,6 +7,7 @@ * Whole new API added with tests. See base.rb for full details. Old API is deprecated. + *Rails 3.0.0 [beta 1] (February 4, 2010)* * The Mail::Message class has helped methods for all the field types that return 'common' defaults for the common use case, so to get the subject, mail.subject will give you a string, mail.date will give you a DateTime object, mail.from will give you an array of address specs (mikel@test.lindsaar.net) etc. If you want to access the field object itself, call mail[:field_name] which will return the field object you want, which you can then chain, like mail[:from].formatted diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index 69ca33987b..7c2cebcff1 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,4 +1,4 @@ -*Rails 3.0.0 [beta 2] (pending)* +*Rails 3.0.0 [beta 2] (April 1st, 2010)* * #concat is now deprecated in favor of using <%= %> helpers [YK] @@ -28,6 +28,7 @@ # for just url_for include Rails.application.router.url_for + *Rails 3.0.0 [beta 1] (February 4, 2010)* * Fixed that PrototypeHelper#update_page should return html_safe [DHH] diff --git a/activemodel/CHANGELOG b/activemodel/CHANGELOG index dec2524cb3..8c458b6091 100644 --- a/activemodel/CHANGELOG +++ b/activemodel/CHANGELOG @@ -1,4 +1,4 @@ -*Rails 3.0.0 [beta 2] (pending)* +*Rails 3.0.0 [beta 2] (April 1st, 2010)* * #new_record? and #destroyed? were removed from ActiveModel::Lint. Use persisted? instead. A model is persisted if it's not a new_record? and it was @@ -12,6 +12,7 @@ * #to_key was added to ActiveModel::Lint so we can generate DOM IDs for AMo objects with composite keys [MG] + *Rails 3.0.0 [beta 1] (February 4, 2010)* * ActiveModel::Observer#add_observer! diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG index 48c4af7f74..b9f565c71d 100644 --- a/activesupport/CHANGELOG +++ b/activesupport/CHANGELOG @@ -1,4 +1,4 @@ -*Rails 3.0.0 [beta 2] (pending)* +*Rails 3.0.0 [beta 2] (April 1st, 2010)* * Reduced load time by deferring configuration of classes using ActiveSupport::on_load(:component_name) [YK] @@ -11,6 +11,7 @@ * 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] diff --git a/railties/CHANGELOG b/railties/CHANGELOG index 7e50ad02f0..24ba378efe 100644 --- a/railties/CHANGELOG +++ b/railties/CHANGELOG @@ -1,4 +1,4 @@ -*Rails 3.0.0 [beta 2] (pending)* +*Rails 3.0.0 [beta 2] (April 1st, 2010)* * Session store configuration has changed [YK & CL] @@ -11,6 +11,7 @@ * Added config.generators.templates to provide alternative paths for the generators to look for templates [JV] + *Rails 3.0.0 [beta 1] (February 4, 2010)* * Added "rake about" as a replacement for script/about [DHH] |