Release 4.1

This commit is contained in:
medmunds
2018-08-27 11:48:39 -07:00
parent cb521e0e0e
commit 8b7b833a2b
2 changed files with 4 additions and 6 deletions

View File

@@ -29,19 +29,17 @@ Release history
v4.1 v4.1
---- ----
*In development* *2018-08-27*
.. TODO: when releasing, change "latest" to "stable" in docs links
Features Features
~~~~~~~~ ~~~~~~~~
* **SendGrid:** Support both new "dynamic" and original "legacy" transactional * **SendGrid:** Support both new "dynamic" and original "legacy" transactional
templates. (See templates. (See
`docs <https://anymail.readthedocs.io/en/latest/esps/sendgrid/#sendgrid-templates>`__.) `docs <https://anymail.readthedocs.io/en/stable/esps/sendgrid/#sendgrid-templates>`__.)
* **SendGrid:** Allow merging `esp_extra["personalizations"]` dict into other message-derived * **SendGrid:** Allow merging `esp_extra["personalizations"]` dict into other message-derived
personalizations. (See personalizations. (See
`docs <https://anymail.readthedocs.io/en/latest/esps/sendgrid/#sendgrid-esp-extra>`__.) `docs <https://anymail.readthedocs.io/en/stable/esps/sendgrid/#sendgrid-esp-extra>`__.)
v4.0 v4.0

View File

@@ -1,3 +1,3 @@
VERSION = (4, 0) VERSION = (4, 1)
__version__ = '.'.join([str(x) for x in VERSION]) # major.minor.patch or major.minor.devN __version__ = '.'.join([str(x) for x in VERSION]) # major.minor.patch or major.minor.devN
__minor_version__ = '.'.join([str(x) for x in VERSION[:2]]) # Sphinx's X.Y "version" __minor_version__ = '.'.join([str(x) for x in VERSION[:2]]) # Sphinx's X.Y "version"