From 6cb1a8b4e94af86c8ce2cf6099a1f742e3732560 Mon Sep 17 00:00:00 2001 From: Mike Edmunds Date: Wed, 7 Aug 2024 12:37:35 -0700 Subject: [PATCH] Release 11.1 --- CHANGELOG.rst | 14 ++++++++++++-- anymail/_version.py | 2 +- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 006585ae..593dc975 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 ac13b37d..64c9bd99 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(",")