Version 0.2.0

* Release notes in readme
* Update example in readme
* Note deprecation of DjrillMessage class
* Longer long_description for PyPI
* Update authors
* Bump version number (setup.py and __init__.py)
This commit is contained in:
medmunds
2012-12-11 13:19:21 -08:00
parent 2a2ca6c137
commit bc9e6212a6
5 changed files with 59 additions and 23 deletions

View File

@@ -1,7 +1,7 @@
from django.contrib.admin.sites import AdminSite
from django.utils.text import capfirst
VERSION = (0, 1, 2)
VERSION = (0, 2, 0)
__version__ = '.'.join([str(x) for x in VERSION])

View File

@@ -1,6 +1,9 @@
from django.core.mail import EmailMultiAlternatives
# DjrillMessage class is deprecated as of 0.2.0, but retained for
# compatibility with existing code. (New code can just set Mandrill-specific
# options directly on an EmailMessage or EmailMultiAlternatives object.)
class DjrillMessage(EmailMultiAlternatives):
alternative_subtype = "mandrill"