mirror of
https://github.com/pacnpal/django-anymail.git
synced 2025-12-21 12:21:06 -05:00
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:
@@ -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])
|
||||
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user