Skip to content

Commit

Permalink
Release version 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
germsvel committed Mar 5, 2021
1 parent 4066794 commit a94b832
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,19 @@ complete changelog, see the git history for each version via the version links.

[hex package page]: https://hex.pm/packages/bamboo

## [2.0.1] - 2021-03-05

#### Fixes/Enhancements

* Fix type spec of Mailer.deliver_later/1 ([#584])
* Fix format_email_address/2 spec. Returns a single address or a list ([#585])

[#584]: https://github.com/thoughtbot/bamboo/pull/584
[#585]: https://github.com/thoughtbot/bamboo/pull/585

## [2.0.0] - 2021-02-19

## Breaking Changes
#### Breaking Changes

* Adds Mailer.deliver_now! and deliver_later! ([#571])
* Extract Bamboo.Phoenix ([#581])
Expand Down Expand Up @@ -406,6 +416,7 @@ Please see the [upgrade guide].
* `MandrillEmail` has been renamed to `MandrillHelper`. The API is the same so all you will have to do is rename your imports and/or aliases.
* `Mailer.deliver/1` has been renamed to `Mandrill.deliver_now/1` to add clarity. See discussion here: https://github.com/paulcsmith/bamboo/issues/89

[2.0.1]: https://github.com/thoughtbot/bamboo/compare/v2.0.0...v2.0.1
[2.0.0]: https://github.com/thoughtbot/bamboo/compare/v1.7.1...v2.0.0
[1.7.1]: https://github.com/thoughtbot/bamboo/compare/v1.7.0...v1.7.1
[1.7.0]: https://github.com/thoughtbot/bamboo/compare/v1.6.0...v1.7.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ To install Bamboo, add it to your list of dependencies in `mix.exs`.

```elixir
def deps do
[{:bamboo, "~> 2.0.0"}]
[{:bamboo, "~> 2.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 @@ -6,7 +6,7 @@ defmodule Bamboo.Mixfile do
def project do
[
app: :bamboo,
version: "2.0.0",
version: "2.0.1",
elixir: "~> 1.6",
source_url: @project_url,
homepage_url: @project_url,
Expand Down

0 comments on commit a94b832

Please sign in to comment.