diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 006585a..593dc97 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -26,10 +26,10 @@ Release history .. This extra heading level keeps the ToC from becoming unmanageably long -vNext +v11.1 ----- -*unreleased changes* +*2024-08-07* Features ~~~~~~~~ @@ -37,6 +37,16 @@ Features * **Brevo:** Support Brevo's new "Complaint," "Error" and "Loaded by proxy" tracking events. (Thanks to `@originell`_ for the update.) +Deprecations +~~~~~~~~~~~~ + +* This will be the last Anymail release to support Django 3.0, 3.1 and 3.2 + (which reached end of extended support on 2021-04-06, 2021-12-07 and + 2024-04-01, respectively). + +* This will be the last Anymail release to support Python 3.7 (which reached + end-of-life on 2023-06-27, and is not supported by Django 4.0 or later). + v11.0.1 ------- diff --git a/anymail/_version.py b/anymail/_version.py index ac13b37..64c9bd9 100644 --- a/anymail/_version.py +++ b/anymail/_version.py @@ -2,6 +2,6 @@ # Instead, load version info from the package root. #: major.minor or major.minor.patch (optionally with .devN suffix) -__version__ = "11.0.1" +__version__ = "11.1" VERSION = __version__.split(",")