Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f0364d8

Browse files
author
David Heinemeier Hansson
committedApr 1, 2010
Release is today, yo
1 parent c1883e7 commit f0364d8

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed
 

‎actionmailer/CHANGELOG

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*Rails 3.0.0 [beta 2] (pending)*
1+
*Rails 3.0.0 [beta 2] (April 1st, 2010)*
22

33
* Added interceptors and observers from Mail [ML]
44

@@ -7,6 +7,7 @@
77

88
* Whole new API added with tests. See base.rb for full details. Old API is deprecated.
99

10+
1011
*Rails 3.0.0 [beta 1] (February 4, 2010)*
1112

1213
* 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

‎actionpack/CHANGELOG

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*Rails 3.0.0 [beta 2] (pending)*
1+
*Rails 3.0.0 [beta 2] (April 1st, 2010)*
22

33
* #concat is now deprecated in favor of using <%= %> helpers [YK]
44

@@ -28,6 +28,7 @@
2828
# for just url_for
2929
include Rails.application.router.url_for
3030

31+
3132
*Rails 3.0.0 [beta 1] (February 4, 2010)*
3233

3334
* Fixed that PrototypeHelper#update_page should return html_safe [DHH]

‎activemodel/CHANGELOG

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*Rails 3.0.0 [beta 2] (pending)*
1+
*Rails 3.0.0 [beta 2] (April 1st, 2010)*
22

33
* #new_record? and #destroyed? were removed from ActiveModel::Lint. Use
44
persisted? instead. A model is persisted if it's not a new_record? and it was
@@ -12,6 +12,7 @@
1212
* #to_key was added to ActiveModel::Lint so we can generate DOM IDs for
1313
AMo objects with composite keys [MG]
1414

15+
1516
*Rails 3.0.0 [beta 1] (February 4, 2010)*
1617

1718
* ActiveModel::Observer#add_observer!

‎activesupport/CHANGELOG

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*Rails 3.0.0 [beta 2] (pending)*
1+
*Rails 3.0.0 [beta 2] (April 1st, 2010)*
22

33
* Reduced load time by deferring configuration of classes using
44
ActiveSupport::on_load(:component_name) [YK]
@@ -11,6 +11,7 @@
1111

1212
* JSON backend for YAJL. Preferred if available. #2666 [Brian Lopez]
1313

14+
1415
*Rails 3.0.0 [beta 1] (February 4, 2010)*
1516

1617
* 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]

‎railties/CHANGELOG

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*Rails 3.0.0 [beta 2] (pending)*
1+
*Rails 3.0.0 [beta 2] (April 1st, 2010)*
22

33
* Session store configuration has changed [YK & CL]
44

@@ -11,6 +11,7 @@
1111
* Added config.generators.templates to provide alternative paths for the generators
1212
to look for templates [JV]
1313

14+
1415
*Rails 3.0.0 [beta 1] (February 4, 2010)*
1516

1617
* Added "rake about" as a replacement for script/about [DHH]

0 commit comments

Comments
 (0)
Please sign in to comment.