Skip to content

Commit

Permalink
Release 10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
medmunds committed Jul 31, 2023
1 parent 05afde0 commit de44b93
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 14 deletions.
23 changes: 10 additions & 13 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
~~~~~~~~
Expand All @@ -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 <http://anymail.dev/en/latest/inbound/#anymail.inbound.AnymailInboundMessage>`__.
See `docs <http://anymail.dev/en/stable/inbound/#anymail.inbound.AnymailInboundMessage>`__.
(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 <https://anymail.dev/en/latest/esps/sendinblue/#sendinblue-inbound>`_.)
`docs <https://anymail.dev/en/stable/esps/sendinblue/#sendinblue-inbound>`_.)

* **SendGrid:** Support for multiple ``reply_to`` addresses.
* **SendGrid:** Support multiple ``reply_to`` addresses.
(Thanks to `@gdvalderrama`_ for pointing out the new API.)

Deprecations
Expand All @@ -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
-----
Expand Down
2 changes: 1 addition & 1 deletion anymail/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(",")

0 comments on commit de44b93

Please sign in to comment.