From 00c3341c7b2b5d090e8b234c6eb13b6d697bc36d Mon Sep 17 00:00:00 2001 From: Justin Toniazzo Date: Fri, 6 Jan 2023 16:12:04 -0500 Subject: [PATCH] Release version 2.3.0 --- .!54020!README.md | 0 CHANGELOG.md | 22 ++++++++++++++++++++++ README.md | 2 +- mix.exs | 2 +- 4 files changed, 24 insertions(+), 2 deletions(-) create mode 100644 .!54020!README.md diff --git a/.!54020!README.md b/.!54020!README.md new file mode 100644 index 00000000..e69de29b diff --git a/CHANGELOG.md b/CHANGELOG.md index 438d4174..a897f938 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,27 @@ complete changelog, see the git history for each version via the version links. [hex package page]: https://hex.pm/packages/bamboo +## [2.3.0] - 2023-01-06 + +### Additions + +* Add inline images in mandrill adapter ([#608]) +* add support for enabling sendgrid click tracking ([#618]) +* Better local preview for text-only emails ([#622]) + +#### Fixes/Enhancements + +* Improve format of SendGridHelper docs ([#611]) +* Change "enabled" to "enable" to conform to SendGrid API ([#624]) +* Update mime package version ([#627]) + +[#608]: https://github.com/thoughtbot/bamboo/pull/608 +[#611]: https://github.com/thoughtbot/bamboo/pull/611 +[#618]: https://github.com/thoughtbot/bamboo/pull/618 +[#622]: https://github.com/thoughtbot/bamboo/pull/622 +[#624]: https://github.com/thoughtbot/bamboo/pull/624 +[#627]: https://github.com/thoughtbot/bamboo/pull/627 + ## [2.2.0] - 2021-06-11 ### Additions @@ -468,6 +489,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.3.0]: https://github.com/thoughtbot/bamboo/compare/v2.2.0...v2.3.0 [2.2.0]: https://github.com/thoughtbot/bamboo/compare/v2.1.0...v2.2.0 [2.1.0]: https://github.com/thoughtbot/bamboo/compare/v2.0.2...v2.1.0 [2.0.2]: https://github.com/thoughtbot/bamboo/compare/v2.0.1...v2.0.2 diff --git a/README.md b/README.md index 05008b0d..e866da1e 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.2.0"}] + [{:bamboo, "~> 2.3.0"}] end ``` diff --git a/mix.exs b/mix.exs index b05f094b..ff0322d5 100644 --- a/mix.exs +++ b/mix.exs @@ -6,7 +6,7 @@ defmodule Bamboo.Mixfile do def project do [ app: :bamboo, - version: "2.2.0", + version: "2.3.0", elixir: "~> 1.6", source_url: @project_url, homepage_url: @project_url,