From c1883e75b38be79cc547890b2c83619351da1c95 Mon Sep 17 00:00:00 2001 From: wycats Date: Thu, 1 Apr 2010 14:04:55 -0700 Subject: [PATCH] Updated changelogs to differentiate beta1 and beta2 --- actionmailer/CHANGELOG | 4 +++- actionpack/CHANGELOG | 4 +++- activemodel/CHANGELOG | 4 +++- activeresource/CHANGELOG | 2 +- activesupport/CHANGELOG | 5 ++--- railties/CHANGELOG | 4 +++- 6 files changed, 15 insertions(+), 8 deletions(-) diff --git a/actionmailer/CHANGELOG b/actionmailer/CHANGELOG index c78cfd89ac..bb5c7311f3 100644 --- a/actionmailer/CHANGELOG +++ b/actionmailer/CHANGELOG @@ -1,4 +1,4 @@ -*Rails 3.0 (pending)* +*Rails 3.0.0 [beta 2] (pending)* * Added interceptors and observers from Mail [ML] @@ -7,6 +7,8 @@ * 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 * Mail#content_type now returns the content_type field as a string. If you want the mime type of a mail, then you call Mail#mime_type (eg, text/plain), if you want the parameters of the content type field, you call Mail#content_type_parameters which gives you a hash, eg {'format' => 'flowed', 'charset' => 'utf-8'} diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index f6e9bd0d02..69ca33987b 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,4 +1,4 @@ -*Edge* +*Rails 3.0.0 [beta 2] (pending)* * #concat is now deprecated in favor of using <%= %> helpers [YK] @@ -28,6 +28,8 @@ # 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] * Fixed that much of DateHelper wouldn't return html_safe? strings [DHH] diff --git a/activemodel/CHANGELOG b/activemodel/CHANGELOG index b1334e1d98..dec2524cb3 100644 --- a/activemodel/CHANGELOG +++ b/activemodel/CHANGELOG @@ -1,4 +1,4 @@ -*Edge* +*Rails 3.0.0 [beta 2] (pending)* * #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,8 @@ * #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! It has a custom hook to define after_find that should really be in a diff --git a/activeresource/CHANGELOG b/activeresource/CHANGELOG index 113694e895..27bf99a8ee 100644 --- a/activeresource/CHANGELOG +++ b/activeresource/CHANGELOG @@ -1,4 +1,4 @@ -*Edge* +*Rails 3.0.0 [beta 1] (February 4, 2010)* * Add support for errors in JSON format. #1956 [Fabien Jakimowicz] diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG index 60f7c0e638..48c4af7f74 100644 --- a/activesupport/CHANGELOG +++ b/activesupport/CHANGELOG @@ -1,4 +1,4 @@ -*Rails 3.0 (pending)* +*Rails 3.0.0 [beta 2] (pending)* * Reduced load time by deferring configuration of classes using ActiveSupport::on_load(:component_name) [YK] @@ -11,8 +11,7 @@ * JSON backend for YAJL. Preferred if available. #2666 [Brian Lopez] - -*Rails 3.0.0 [beta] (February 4, 2010)* +*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 b518f737ab..7e50ad02f0 100644 --- a/railties/CHANGELOG +++ b/railties/CHANGELOG @@ -1,4 +1,4 @@ -*Edge* +*Rails 3.0.0 [beta 2] (pending)* * Session store configuration has changed [YK & CL] @@ -11,6 +11,8 @@ * 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] * Removed all the default commands in script/* and replaced them with script/rails and a rails command that'll act the same when run from within the app [DHH]. Example: