diff --git a/AUTHORS b/AUTHORS index abbbd6e..152bb5d 100644 --- a/AUTHORS +++ b/AUTHORS @@ -10,3 +10,5 @@ o-zander pinda nielsonsantana Goury (ninamori.org) +blodone +ulistaerk diff --git a/CHANGELOG b/CHANGELOG index 2d355d7..b7d1f79 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -50,7 +50,7 @@ command is called in batches. - Added feature of set reply-to on the message -2.3.0 +3.0.0 ----- - Django 1.9 Support @@ -59,3 +59,11 @@ command is called in batches. - Removed South migrations - Cleanup/pep8 fixes - Celery 3.x syntax. Mail queue now requires celery > 3 if using async email sending. +- Python 3 Support + + +3.1.0 +----- + +- Add CC addresses +- Bug fixes diff --git a/docs/source/conf.py b/docs/source/conf.py index d913b21..88d903d 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -48,9 +48,9 @@ # built documents. # # The short X.Y version. -version = '3.0.2' +version = '3.1.0' # The full version, including alpha/beta/rc tags. -release = '3.0.2' +release = '3.1.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/mailqueue/__init__.py b/mailqueue/__init__.py index b0a7145..9206d67 100644 --- a/mailqueue/__init__.py +++ b/mailqueue/__init__.py @@ -1,3 +1,3 @@ -VERSION = '3.0.2' +VERSION = '3.1.0' default_app_config = 'mailqueue.apps.MailQueueConfig'