diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5e2caa9e..c2670ab4 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 +v10.1 ----- -*Unreleased changes* +*2023-07-31* Features ~~~~~~~~ @@ -43,17 +43,22 @@ Features * Rename `is_inline_attachment()` to just `is_inline()`. The renamed items are still available, but deprecated, under their old names. - See `docs `__. + See `docs `__. (Thanks to `@martinezleoml`_.) * **Inbound:** `AnymailInboundMessage` now derives from Python's `email.message.EmailMessage`, which provides improved compatibility with email standards. (Thanks to `@martinezleoml`_.) +* **Brevo (Sendinblue):** Sendinblue has rebranded to "Brevo." Change default + API endpoint to ``api.brevo.com``, and update docs to reflect new name. Anymail + still uses ``sendinblue`` in the backend name, for settings, etc., so there + should be no impact on your code. (Thanks to `@sblondon`_.) + * **Brevo (Sendinblue):** Add support for inbound email. (See - `docs `_.) + `docs `_.) -* **SendGrid:** Support for multiple ``reply_to`` addresses. +* **SendGrid:** Support multiple ``reply_to`` addresses. (Thanks to `@gdvalderrama`_ for pointing out the new API.) Deprecations @@ -62,14 +67,6 @@ Deprecations * **Inbound:** `AnymailInboundMessage.inline_attachments` and `.is_inline_attachment()` have been renamed---see above. -Other -~~~~~ - -* **Brevo (Sendinblue):** Sendinblue has rebranded to "Brevo." Change default - API endpoint to ``api.brevo.com``, and update docs to reflect new name. Anymail - still uses ``sendinblue`` in the backend name, for settings, etc., so there - should be no impact on your code. (Thanks to `@sblondon`_.) - v10.0 ----- diff --git a/anymail/_version.py b/anymail/_version.py index a8c819f6..0b911594 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.0" +__version__ = "10.1" VERSION = __version__.split(",")