From 7af7bf36c59004bf081489bf6701fad6f36a6194 Mon Sep 17 00:00:00 2001 From: German Velasco Date: Fri, 26 Mar 2021 10:08:25 -0400 Subject: [PATCH] Release version 2.0.2 --- CHANGELOG.md | 13 +++++++++++++ README.md | 2 +- mix.exs | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 88363005..15fcb2e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,18 @@ complete changelog, see the git history for each version via the version links. [hex package page]: https://hex.pm/packages/bamboo +## [2.0.2] - 2021-03-26 + +#### Fixes/Enhancements + +* Fix LocalAdapter.deliver/2 return type ([#589]) +* Return email sent in LocalAdapter with an open_email_in_browser_url config ([#590]) +* Fix example for MandrillHelper.put_param/3 ([#593]) + +[#589]: https://github.com/thoughtbot/bamboo/pull/589 +[#590]: https://github.com/thoughtbot/bamboo/pull/590 +[#593]: https://github.com/thoughtbot/bamboo/pull/593 + ## [2.0.1] - 2021-03-05 #### Fixes/Enhancements @@ -416,6 +428,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.2]: https://github.com/thoughtbot/bamboo/compare/v2.0.1...v2.0.2 [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 diff --git a/README.md b/README.md index da32d62d..bb6f2bec 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.1"}] + [{:bamboo, "~> 2.0.2"}] end ``` diff --git a/mix.exs b/mix.exs index 0d3f4653..85b039b0 100644 --- a/mix.exs +++ b/mix.exs @@ -6,7 +6,7 @@ defmodule Bamboo.Mixfile do def project do [ app: :bamboo, - version: "2.0.1", + version: "2.0.2", elixir: "~> 1.6", source_url: @project_url, homepage_url: @project_url,