Skip to content

Commit c59ad9e

Browse files
committed
Release 9.1
1 parent 62bd066 commit c59ad9e

File tree

2 files changed

+20
-12
lines changed

2 files changed

+20
-12
lines changed

CHANGELOG.rst

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -25,28 +25,36 @@ Release history
2525
^^^^^^^^^^^^^^^
2626
.. This extra heading level keeps the ToC from becoming unmanageably long
2727
28-
vNext
29-
-----
28+
v9.1
29+
----
30+
31+
*2023-03-11*
32+
33+
Features
34+
~~~~~~~~
3035

31-
*Unreleased changes*
36+
* **Amazon SES:** Add support for sending through the Amazon SES v2 API
37+
(not yet enabled by default; see Deprecations below;
38+
`docs <https://anymail.dev/en/stable/esps/amazon_ses/#amazon-ses-v2>`__).
39+
40+
* **MailerSend:** Add support for this ESP
41+
(`docs <https://anymail.dev/en/stable/esps/mailersend/>`__).
3242

3343
Deprecations
3444
~~~~~~~~~~~~
35-
* **Amazon SES:** Anymail is switching to the Amazon SES v2 API for sending mail.
45+
46+
* **Amazon SES:** Anymail will be switching to the Amazon SES v2 API.
3647
Support for the original SES v1 API is now deprecated, and will be dropped in a
3748
future Anymail release (likely in late 2023). Many projects will not
38-
require code changes, but you will need to update your IAM permissions. See
39-
`Migrating to the SES v2 API <https://anymail.dev/en/latest/esps/amazon_ses/#amazon-ses-v2>`__.
40-
41-
Features
42-
~~~~~~~~
43-
* **MailerSend:** Add support for this ESP
44-
(`docs <https://anymail.dev/en/latest/esps/mailersend/>`__).
49+
require code changes, but you may need to update your IAM permissions. See
50+
`Migrating to the SES v2 API <https://anymail.dev/en/stable/esps/amazon_ses/#amazon-ses-v2>`__.
4551

4652
Other
4753
~~~~~
54+
4855
* Test against Django 4.2 prerelease, Python 3.11 (with Django 4.2),
4956
and PyPy 3.9.
57+
5058
* Use black, isort and doc8 to format code,
5159
enforced via pre-commit. (Thanks to `@tim-schilling`_.)
5260

anymail/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = (9, 0)
1+
VERSION = (9, 1)
22

33
#: major.minor.patch or major.minor.devN
44
__version__ = ".".join([str(x) for x in VERSION])

0 commit comments

Comments
 (0)