From 485766182e48cd7777ca2981e3fa3dace19bf766 Mon Sep 17 00:00:00 2001 From: Mike Edmunds Date: Tue, 2 May 2023 13:03:31 -0700 Subject: [PATCH] Release 9.2 --- CHANGELOG.rst | 13 +++++++------ anymail/_version.py | 2 +- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c9254572..dad971d8 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 +v9.2 ----- -*Unreleased changes* +*2023-05-02* Fixes ~~~~~ @@ -37,11 +37,11 @@ Fixes and session creation fails (e.g., with Amazon SES backend and missing credentials). (Thanks to `@technolingo`_.) -* **Postmark:** Fix spurious AnymailInvalidAddress in ``message.cc`` when - inbound message has no Cc recipients. (Thanks to `@Ecno92`_.) +* **Postmark inbound:** Fix spurious AnymailInvalidAddress in ``message.cc`` + when inbound message has no Cc recipients. (Thanks to `@Ecno92`_.) -* **Postmark:** Workaround for handling inbound test webhooks. - (`More info `__) +* **Postmark inbound:** Add workaround for malformed test data sent by + Postmark's inbound webhook "Check" button. (See `#304`_. Thanks to `@Ecno92`_.) Deprecations ~~~~~~~~~~~~ @@ -1421,6 +1421,7 @@ Features .. _#147: https://github.com/anymail/django-anymail/issues/147 .. _#148: https://github.com/anymail/django-anymail/issues/148 .. _#153: https://github.com/anymail/django-anymail/issues/153 +.. _#304: https://github.com/anymail/django-anymail/issues/304 .. _@ailionx: https://github.com/ailionx .. _@alee: https://github.com/alee diff --git a/anymail/_version.py b/anymail/_version.py index 6f494393..dc1bbca3 100644 --- a/anymail/_version.py +++ b/anymail/_version.py @@ -1,4 +1,4 @@ -VERSION = (9, 1) +VERSION = (9, 2) #: major.minor.patch or major.minor.devN __version__ = ".".join([str(x) for x in VERSION])