aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2013-04-29 13:06:45 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2013-04-29 13:15:24 -0300
commitfeb44b9213c91db22648ca0bb91bb6658c531df5 (patch)
tree20c826c1705db7f96248e10b29e5ce3a14e7bba7 /actionmailer
parent1ec64297f9347986a11ce38af2cc3434d99c66c2 (diff)
downloadrails-feb44b9213c91db22648ca0bb91bb6658c531df5.tar.gz
rails-feb44b9213c91db22648ca0bb91bb6658c531df5.tar.bz2
rails-feb44b9213c91db22648ca0bb91bb6658c531df5.zip
rails/master is now 4.1.0.beta
Diffstat (limited to 'actionmailer')
-rw-r--r--actionmailer/CHANGELOG.md63
-rw-r--r--actionmailer/lib/action_mailer/version.rb2
2 files changed, 3 insertions, 62 deletions
diff --git a/actionmailer/CHANGELOG.md b/actionmailer/CHANGELOG.md
index 975f61fa58..9e9d07b386 100644
--- a/actionmailer/CHANGELOG.md
+++ b/actionmailer/CHANGELOG.md
@@ -1,62 +1,3 @@
-## Rails 4.0.0 (unreleased) ##
+* No changes.
-
-## Rails 4.0.0.beta1 (February 25, 2013) ##
-
-* Allow passing interpolations to `#default_i18n_subject`, e.g.:
-
- # config/locales/en.yml
- en:
- user_mailer:
- welcome:
- subject: 'Hello, %{username}'
-
- # app/mailers/user_mailer.rb
- class UserMailer < ActionMailer::Base
- def welcome(user)
- mail(subject: default_i18n_subject(username: user.name))
- end
- end
-
- *Olek Janiszewski*
-
-* Eager loading made to use relation's `in_clause_length` instead of host's one.
- Fixes #8474.
-
- *Boris Staal*
-
-* Explicit multipart messages no longer set the order of the MIME parts.
-
- *Nate Berkopec*
-
-* Do not render views when `mail` isn't called. Fixes #7761.
-
- *Yves Senn*
-
-* Allow delivery method options to be set per mail instance.
-
- If your SMTP delivery settings are dynamic, you can now override settings
- per mail instance for e.g.
-
- def my_mailer(user, company)
- mail to: user.email, subject: "Welcome!",
- delivery_method_options: { user_name: company.smtp_user,
- password: company.smtp_password }
- end
-
- This will ensure that your default SMTP settings will be overridden
- by the company specific ones. You only have to override the settings
- that are dynamic and leave the static setting in your environment
- configuration file (e.g. `config/environments/production.rb`).
-
- *Aditya Sanghi*
-
-* Allow to set default Action Mailer options via `config.action_mailer.default_options=`. *Robert Pankowecki*
-
-* Raise an `ActionView::MissingTemplate` exception when no implicit template could be found. *Damien Mathieu*
-
-* Allow callbacks to be defined in mailers similar to `ActionController::Base`. You can configure default
- settings, headers, attachments, delivery settings or change delivery using
- `before_filter`, `after_filter`, etc. *Justin S. Leitgeb*
-
-Please check [3-2-stable](https://github.com/rails/rails/blob/3-2-stable/actionmailer/CHANGELOG.md) for previous changes.
+Please check [4-0-stable](https://github.com/rails/rails/blob/4-0-stable/actionmailer/CHANGELOG.md) for previous changes.
diff --git a/actionmailer/lib/action_mailer/version.rb b/actionmailer/lib/action_mailer/version.rb
index ab67f62929..9d00091972 100644
--- a/actionmailer/lib/action_mailer/version.rb
+++ b/actionmailer/lib/action_mailer/version.rb
@@ -1,7 +1,7 @@
module ActionMailer
# Returns the version of the currently loaded ActionMailer as a Gem::Version
def self.version
- Gem::Version.new "4.0.0.rc1"
+ Gem::Version.new "4.1.0.beta"
end
module VERSION #:nodoc: