Release 12.0

This commit is contained in:
Mike Edmunds
2024-09-09 12:25:26 -07:00
parent 063fb08a58
commit 35383c7140
2 changed files with 9 additions and 10 deletions

View File

@@ -26,16 +26,21 @@ Release history
.. This extra heading level keeps the ToC from becoming unmanageably long .. This extra heading level keeps the ToC from becoming unmanageably long
vNext (12.0) v12.0
------------ -----
*unreleased changes* *2024-09-09*
Breaking changes Breaking changes
~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~
* Require **Django 4.0 or later** and Python 3.8 or later. * Require **Django 4.0 or later** and Python 3.8 or later.
Features
~~~~~~~~
* **Resend:** Add support for ``send_at``.
Fixes Fixes
~~~~~ ~~~~~
@@ -47,12 +52,6 @@ Fixes
``event.description``. Treat soft bounces as "deferred" rather than "bounced". ``event.description``. Treat soft bounces as "deferred" rather than "bounced".
(Thanks to `@MikeVL`_ for fixing the signature validation problem.) (Thanks to `@MikeVL`_ for fixing the signature validation problem.)
Features
~~~~~~~~
* **Resend:** Add support for ``send_at``.
Other Other
~~~~~ ~~~~~

View File

@@ -2,6 +2,6 @@
# Instead, load version info from the package root. # Instead, load version info from the package root.
#: major.minor or major.minor.patch (optionally with .devN suffix) #: major.minor or major.minor.patch (optionally with .devN suffix)
__version__ = "12.0.dev0" __version__ = "12.0"
VERSION = __version__.split(",") VERSION = __version__.split(",")