From c59ad9e7a150c9c9062007b783830bed1a07db1a Mon Sep 17 00:00:00 2001 From: Mike Edmunds Date: Sat, 11 Mar 2023 11:44:02 -0800 Subject: [PATCH] Release 9.1 --- CHANGELOG.rst | 32 ++++++++++++++++++++------------ anymail/_version.py | 2 +- 2 files changed, 21 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e1cc8cf..7df46cb 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -25,28 +25,36 @@ Release history ^^^^^^^^^^^^^^^ .. This extra heading level keeps the ToC from becoming unmanageably long -vNext ------ +v9.1 +---- -*Unreleased changes* - -Deprecations -~~~~~~~~~~~~ -* **Amazon SES:** Anymail is switching to the Amazon SES v2 API for sending mail. - Support for the original SES v1 API is now deprecated, and will be dropped in a - future Anymail release (likely in late 2023). Many projects will not - require code changes, but you will need to update your IAM permissions. See - `Migrating to the SES v2 API `__. +*2023-03-11* Features ~~~~~~~~ + +* **Amazon SES:** Add support for sending through the Amazon SES v2 API + (not yet enabled by default; see Deprecations below; + `docs `__). + * **MailerSend:** Add support for this ESP - (`docs `__). + (`docs `__). + +Deprecations +~~~~~~~~~~~~ + +* **Amazon SES:** Anymail will be switching to the Amazon SES v2 API. + Support for the original SES v1 API is now deprecated, and will be dropped in a + future Anymail release (likely in late 2023). Many projects will not + require code changes, but you may need to update your IAM permissions. See + `Migrating to the SES v2 API `__. Other ~~~~~ + * Test against Django 4.2 prerelease, Python 3.11 (with Django 4.2), and PyPy 3.9. + * Use black, isort and doc8 to format code, enforced via pre-commit. (Thanks to `@tim-schilling`_.) diff --git a/anymail/_version.py b/anymail/_version.py index 2f2fbc6..6f49439 100644 --- a/anymail/_version.py +++ b/anymail/_version.py @@ -1,4 +1,4 @@ -VERSION = (9, 0) +VERSION = (9, 1) #: major.minor.patch or major.minor.devN __version__ = ".".join([str(x) for x in VERSION])