Skip to content

Commit

Permalink
prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
MatheusBueno782 committed Apr 22, 2021
1 parent 1ca8634 commit d80ba23
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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]).
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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
[
Expand Down

0 comments on commit d80ba23

Please sign in to comment.