mirror of
https://github.com/pacnpal/django-anymail.git
synced 2025-12-20 03:41:05 -05:00
Prep for 0.3.0 release
- Update version numbers - Release notes - Update authors
This commit is contained in:
@@ -8,3 +8,4 @@ ArnaudF
|
||||
Théo Crevon
|
||||
Rafael E. Belliard
|
||||
Jared Morse
|
||||
peillis
|
||||
|
||||
15
README.rst
15
README.rst
@@ -170,7 +170,7 @@ struct can be set directly on an ``EmailMessage`` (or subclass) object:
|
||||
default in your Mandrill account sending options.)
|
||||
* ``auto_text`` - Boolean
|
||||
* ``url_strip_qs`` - Boolean
|
||||
* ``preserve_recipients`` - Boolean -- see the caution about bcc addresses above
|
||||
* ``preserve_recipients`` - Boolean
|
||||
* ``global_merge_vars`` - a dict -- e.g.,
|
||||
``{ 'company': "ACME", 'offer': "10% off" }``
|
||||
* ``recipient_merge_vars`` - a dict whose keys are the recipient email addresses
|
||||
@@ -283,6 +283,19 @@ rest of this project.)
|
||||
Release Notes
|
||||
-------------
|
||||
|
||||
Version 0.3.0:
|
||||
|
||||
* Attachments are now supported
|
||||
* Mandrill templates are now supported
|
||||
* A bcc address is now passed to Mandrill as bcc, rather than being lumped in
|
||||
with the "to" recipients. Multiple bcc recipients will now raise an exception,
|
||||
as Mandrill only allows one.
|
||||
* Python 3 support (with Django 1.5)
|
||||
* Exceptions should be more useful: ``djrill.NotSupportedByMandrillError``
|
||||
replaces generic ValueError; ``djrill.MandrillAPIError`` replaces
|
||||
DjrillBackendHTTPError, and is now derived from requests.HTTPError. (New
|
||||
exceptions are backwards compatible with old ones for existing code.)
|
||||
|
||||
Version 0.2.0:
|
||||
|
||||
* ``MANDRILL_API_URL`` is no longer required in settings.py
|
||||
|
||||
@@ -4,7 +4,7 @@ from django.utils.text import capfirst
|
||||
|
||||
from djrill.exceptions import MandrillAPIError, NotSupportedByMandrillError
|
||||
|
||||
VERSION = (0, 2, 0)
|
||||
VERSION = (0, 3, 0)
|
||||
__version__ = '.'.join([str(x) for x in VERSION])
|
||||
|
||||
# This backend was developed against this API endpoint.
|
||||
|
||||
2
setup.py
2
setup.py
@@ -7,7 +7,7 @@ with open('README.rst') as file:
|
||||
|
||||
setup(
|
||||
name="djrill",
|
||||
version="0.2.0",
|
||||
version="0.3.0",
|
||||
description='Django email backend for Mandrill.',
|
||||
keywords="django, mailchimp, mandrill, email, email backend",
|
||||
author="Kenneth Love <kenneth@brack3t.com>, Chris Jones <chris@brack3t.com>",
|
||||
|
||||
Reference in New Issue
Block a user