From a94b83286727d71747df8c03c022f470c0a1cd49 Mon Sep 17 00:00:00 2001 From: German Velasco Date: Fri, 5 Mar 2021 09:31:32 -0500 Subject: [PATCH] Release version 2.0.1 --- CHANGELOG.md | 13 ++++++++++++- README.md | 2 +- mix.exs | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 428acadc..88363005 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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]) @@ -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 diff --git a/README.md b/README.md index 7cca4d96..da32d62d 100644 --- a/README.md +++ b/README.md @@ -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 ``` diff --git a/mix.exs b/mix.exs index 3637e20f..0d3f4653 100644 --- a/mix.exs +++ b/mix.exs @@ -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,