From c0c858391f03d651c1b7bdda5a6f2222f0a7aa78 Mon Sep 17 00:00:00 2001 From: Jan-Jelle Kester Date: Thu, 16 Feb 2017 15:17:07 +0100 Subject: [PATCH 1/2] Add test configuration for Django 1.11 Allow for alpha releases and release candidates for now --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index f694913d..f4689bc7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,7 @@ env: - DJANGO_VERSION=1.8.* - DJANGO_VERSION=1.9.* - DJANGO_VERSION=1.10.* + - DJANGO_VERSION=1.11* install: - "pip install -r requirements.txt" - "pip install Django==$DJANGO_VERSION" From 6acab3809b7500cca3b35caabbb7f42ab89289e9 Mon Sep 17 00:00:00 2001 From: Jan-Jelle Kester Date: Thu, 16 Feb 2017 15:17:59 +0100 Subject: [PATCH 2/2] Bump version to 0.4.2 --- docs/source/conf.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index a6137b96..217537b2 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -62,7 +62,7 @@ # The short X.Y version. version = '0.4' # The full version, including alpha/beta/rc tags. -release = '0.4.1' +release = '0.4.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 90097740..32c811b1 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='django-auditlog', - version='0.4.1', + version='0.4.2', packages=['auditlog', 'auditlog.migrations'], package_dir={'': 'src'}, url='https://github.com/jjkester/django-auditlog',