From 771ce6b0e7d3fbfb450c27c59cb5958b634ecadb Mon Sep 17 00:00:00 2001 From: Derek Stegelman Date: Sun, 14 Oct 2018 10:04:16 -0600 Subject: [PATCH] Bump, and Authors add --- AUTHORS | 1 + CHANGELOG | 5 +++++ docs/source/conf.py | 4 ++-- mailqueue/__init__.py | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/AUTHORS b/AUTHORS index 2a4c9ef..e063d70 100644 --- a/AUTHORS +++ b/AUTHORS @@ -14,3 +14,4 @@ blodone ulistaerk JiriKr hggh +BigSmoke diff --git a/CHANGELOG b/CHANGELOG index 073ea35..35ab10a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -77,3 +77,8 @@ command is called in batches. ----- - Django 2.0 Fixes from hggh + +3.1.5 +----- + +- Attachment.__str()__() returning None breaks django.debug.technical_500_response from BigSmoke \ No newline at end of file diff --git a/docs/source/conf.py b/docs/source/conf.py index 88d903d..0c26e87 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -48,9 +48,9 @@ # built documents. # # The short X.Y version. -version = '3.1.0' +version = '3.1.5' # The full version, including alpha/beta/rc tags. -release = '3.1.0' +release = '3.1.5' # 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 66fb4e4..76cb0bb 100644 --- a/mailqueue/__init__.py +++ b/mailqueue/__init__.py @@ -1,3 +1,3 @@ -VERSION = '3.1.4' +VERSION = '3.1.5' default_app_config = 'mailqueue.apps.MailQueueConfig'