diff --git a/CHANGELOG.md b/CHANGELOG.md index a203a8c..857654c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 1.7.0 (2017-9-11) +* Enhancements + * Add `add/1`, `all_recipients/3`, and `delete_recipient/2` to `SendGrid.Contacts.Lists` + * Remove compile warnings for `Phoenix.View` + ## 1.6.0 (2017-7-14) * Enhancements * Relax dependency versions diff --git a/README.md b/README.md index 6e11b2b..3151398 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ SendGrid.Email.build() Add the following code to your dependencies in your **`mix.exs`** file: ```elixir -{:sendgrid, "~> 1.6.0"} +{:sendgrid, "~> 1.7.0"} ``` ## Configuration diff --git a/mix.exs b/mix.exs index ea9892f..e524b42 100644 --- a/mix.exs +++ b/mix.exs @@ -3,7 +3,7 @@ defmodule SendGrid.Mixfile do def project do [app: :sendgrid, - version: "1.6.0", + version: "1.7.0", elixir: "~> 1.4", package: package(), compilers: compilers(Mix.env),