From d80ba2391a4b9cd2223417f79a8c6cd14ae85893 Mon Sep 17 00:00:00 2001 From: destne Date: Thu, 22 Apr 2021 17:57:56 +0200 Subject: [PATCH] prepare for release --- CHANGELOG.md | 14 ++++++++++++++ README.md | 2 +- mix.exs | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c1c2863..1581f4d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,20 @@ # CHANGELOG +## 4.0.1 +- Add support for attachment unicode file names by encoding them using format described in [RFC 2231] ([#183]). +- After bumping dependencies, the project requires([#185], [#187]): + - core: + - bamboo, ~> 2.1.0 + - gen_smtp, ~> 1.1.1 + + By bumping `gen_smtp` we fix the issue of errors being raised when sending emails after a STARTTLS. + +[RFC 2231]: https://tools.ietf.org/html/rfc2231 +[#183]: https://github.com/fewlinesco/bamboo_smtp/pull/183 +[#185]: https://github.com/fewlinesco/bamboo_smtp/pull/185 +[#187]: https://github.com/fewlinesco/bamboo_smtp/pull/187 + ## 4.0.0 - Change the way the adapter handle errors when emails fail to deliver. instead of raising a `SMTPError` we now return an `{:error, %SMTPError{}}` tuple. This is required to accommodate the breaking changes introduced in `bamboo 2.0`([#177]). diff --git a/README.md b/README.md index bcc05ea..1c5b474 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ The package can be installed as: ```elixir def deps do - [{:bamboo_smtp, "~> 4.0.0"}] + [{:bamboo_smtp, "~> 4.0.1"}] end ``` diff --git a/mix.exs b/mix.exs index 02548fb..e340c08 100644 --- a/mix.exs +++ b/mix.exs @@ -2,7 +2,7 @@ defmodule BambooSmtp.Mixfile do use Mix.Project @project_url "https://github.com/fewlinesco/bamboo_smtp" - @version "4.0.0" + @version "4.0.1" def project do [