aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--actionmailer/CHANGELOG2
-rw-r--r--activesupport/CHANGELOG8
2 files changed, 1 insertions, 9 deletions
diff --git a/actionmailer/CHANGELOG b/actionmailer/CHANGELOG
index 4ee6bd4620..0018a2ed5d 100644
--- a/actionmailer/CHANGELOG
+++ b/actionmailer/CHANGELOG
@@ -1,7 +1,5 @@
*Rails 3.0 (pending)*
-* Unvendor'd text-format, now requires text-format gem
-
* Whole new API added with tests. See base.rb for full details. Old API is deprecated.
* 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/activesupport/CHANGELOG b/activesupport/CHANGELOG
index cd72aa1bee..8553a8c0af 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,10 +1,4 @@
-*Edge*
-
-* Unvendor'd Memcach Client. Now requires the Builder gem as a dependency [Mikel Lindsaar]
-
-* Unvendor'd Builder. Now requires the Builder gem as a dependency [Mikel Lindsaar]
-
-* Unvendor'd TZInfo. Now requires the TZInfo gem as a dependency [Mikel Lindsaar]
+*Rails 3.0 (pending)*
* YAML serialization for OrderedHash. #3608 [Gregor Schmidt]