diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f6a5c49..091ef7a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -25,32 +25,22 @@ Release history ^^^^^^^^^^^^^^^ .. This extra heading level keeps the ToC from becoming unmanageably long -vNext +v10.3 ----- -*unreleased changes* - -Deprecations -~~~~~~~~~~~~ - -* **SendinBlue:** Rename "SendinBlue" to "Brevo" throughout Anymail's code. - This affects the email backend name, settings names, and webhook URLs. - The old names will continue to work for now, but are deprecated. See - `Updating code from SendinBlue to Brevo `__ - for details. - +*2024-03-12* Features ~~~~~~~~ * **Brevo:** Add support for batch sending - (`docs `__). + (`docs `__). * **Resend:** Add support for batch sending - (`docs `__). + (`docs `__). -* **Unisender Go**: Add support for this ESP - (`docs `__). +* **Unisender Go:** Newly supported ESP + (`docs `__). (Thanks to `@Arondit`_ for the implementation.) @@ -61,6 +51,17 @@ Fixes to the event tracking webhook. (Thanks to `@izimobil`_ for the fix.) +Deprecations +~~~~~~~~~~~~ + +* **Brevo (SendinBlue):** Rename "SendinBlue" to "Brevo" throughout + Anymail's code, reflecting their rebranding. + This affects the email backend path, settings names, and webhook URLs. + The old names will continue to work for now, but are deprecated. See + `Updating code from SendinBlue to Brevo `__ + for details. + + v10.2 ----- diff --git a/anymail/_version.py b/anymail/_version.py index 33b9859..8e8f527 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__ = "10.2" +__version__ = "10.3" VERSION = __version__.split(",")