diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5a39c787..ff635341 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -25,10 +25,10 @@ Release history ^^^^^^^^^^^^^^^ .. This extra heading level keeps the ToC from becoming unmanageably long -vNext ------ +v7.0 +---- -*Not yet released* +*2019-09-07* Breaking changes ~~~~~~~~~~~~~~~~ @@ -38,21 +38,21 @@ Breaking changes (now-deprecated) SendinBlue template send API, but involves two breaking changes: * You *must* `convert `_ - each old Sendinblue template to the new language as you upgrade to Anymail vNext, or + each old Sendinblue template to the new language as you upgrade to Anymail v7.0, or certain features may be silently ignored on template sends (notably `reply_to` and recipient display names). * Sendinblue's API no longer supports sending attachments when using templates. Ordinary, non-template sending is not affected by these changes. See - `docs `_ + `docs `_ for more info and alternatives. (Thanks `@Thorbenl`_.) Features ~~~~~~~~ * **Mailgun:** Support Mailgun's new (ESP stored) handlebars templates via `template_id`. - See `docs `__. + See `docs `__. (Thanks `@anstosa`_.) * **SendinBlue:** Support multiple `tags`. (Thanks `@Thorbenl`_.) diff --git a/anymail/_version.py b/anymail/_version.py index b16bf56d..12a345b4 100644 --- a/anymail/_version.py +++ b/anymail/_version.py @@ -1,3 +1,3 @@ -VERSION = (6, 1, 0) +VERSION = (7, 0, 0) __version__ = '.'.join([str(x) for x in VERSION]) # major.minor.patch or major.minor.devN __minor_version__ = '.'.join([str(x) for x in VERSION[:2]]) # Sphinx's X.Y "version" diff --git a/docs/esps/mailgun.rst b/docs/esps/mailgun.rst index 059e3678..66d9dbdc 100644 --- a/docs/esps/mailgun.rst +++ b/docs/esps/mailgun.rst @@ -246,7 +246,7 @@ Batch sending/merge and ESP templates Mailgun supports :ref:`ESP stored templates `, on-the-fly templating, and :ref:`batch sending ` with per-recipient merge data. -.. versionchanged:: 6.2 +.. versionchanged:: 7.0 Added support for Mailgun's stored (handlebars) templates.