From c0e1b54e4785eedfba866d5ff23c07ba392786ee Mon Sep 17 00:00:00 2001 From: Derek Stegelman Date: Fri, 8 Dec 2017 19:28:12 -0700 Subject: [PATCH] Fix for django 2 --- AUTHORS | 3 ++- CHANGELOG | 7 ++++++- mailqueue/__init__.py | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/AUTHORS b/AUTHORS index de58eaf..2a4c9ef 100644 --- a/AUTHORS +++ b/AUTHORS @@ -12,4 +12,5 @@ nielsonsantana Goury (ninamori.org) blodone ulistaerk -JiriKr \ No newline at end of file +JiriKr +hggh diff --git a/CHANGELOG b/CHANGELOG index c4c36d6..073ea35 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -71,4 +71,9 @@ command is called in batches. 3.1.3 ----- -- Fixed filename split on windows via Jiří Král \ No newline at end of file +- Fixed filename split on windows via Jiří Král + +3.1.4 +----- + +- Django 2.0 Fixes from hggh diff --git a/mailqueue/__init__.py b/mailqueue/__init__.py index 8622c97..66fb4e4 100644 --- a/mailqueue/__init__.py +++ b/mailqueue/__init__.py @@ -1,3 +1,3 @@ -VERSION = '3.1.3' +VERSION = '3.1.4' default_app_config = 'mailqueue.apps.MailQueueConfig'