aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2007-09-29 22:11:39 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2007-09-29 22:11:39 +0000
commit660c945f844d875b8cc886513c23e73196142035 (patch)
treed962c97e8f0d5493e958252f8665d47077c4c58a /actionmailer/CHANGELOG
parent6ea4dd4a65f85f165f71cf1c866dea578dae9e49 (diff)
downloadrails-660c945f844d875b8cc886513c23e73196142035.tar.gz
rails-660c945f844d875b8cc886513c23e73196142035.tar.bz2
rails-660c945f844d875b8cc886513c23e73196142035.zip
Updated
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7683 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionmailer/CHANGELOG')
-rw-r--r--actionmailer/CHANGELOG22
1 files changed, 19 insertions, 3 deletions
diff --git a/actionmailer/CHANGELOG b/actionmailer/CHANGELOG
index 3b9283bc03..492474e028 100644
--- a/actionmailer/CHANGELOG
+++ b/actionmailer/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*2.0.0 [Preview Release]* (September 29th, 2007)
* Fix attachment decoding when using the TMail C extension. #7861 [orangechicken]
@@ -10,8 +10,6 @@
* Make sure parsed emails recognized attachments nested inside multipart parts. #6714 [Jamis Buck]
-* Rename server_settings to smtp settings, and add sendmail_settings to allow you to override the arguments to and location of the sendmail executable. [Koz]
-
* Allow mailer actions named send by using __send__ internally. #6467 [iGEL]
* Add assert_emails and assert_no_emails to test the number of emails delivered. #6479 [Jonathan Viney]
@@ -25,6 +23,24 @@
post :signup, :name => 'Jonathan'
end
+
+*1.3.3* (March 12th, 2007)
+
+* Depend on Action Pack 1.13.3
+
+
+*1.3.2* (February 5th, 2007)
+
+* Deprecate server_settings renaming it to smtp_settings, add sendmail_settings to allow you to override the arguments to and location of the sendmail executable. [Koz]
+
+
+*1.3.1* (January 16th, 2007)
+
+* Depend on Action Pack 1.13.1
+
+
+*1.3.0* (January 16th, 2007)
+
* Make mime version default to 1.0. closes #2323 [ror@andreas-s.net]
* Make sure quoted-printable text is decoded correctly when only portions of the text are encoded. closes #3154. [jon@siliconcircus.com]