From ae231d50253bce150b040ae48debcff890bef28a Mon Sep 17 00:00:00 2001 From: Ramez Ashraf Date: Thu, 8 Apr 2021 07:05:14 +0200 Subject: [PATCH 1/2] upgrade tests and versions --- .travis.yml | 6 +++--- CHANGELOG.md | 4 ++++ docs/source/conf.py | 2 +- slick_reporting/__init__.py | 4 ++-- 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 91ce28d..eaa99df 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,9 +6,9 @@ python: - "3.8" env: - - DJANGO=django==2.2.17 - - DJANGO=django==3.0.11 - - DJANGO=django==3.1.4 + - DJANGO=django==2.2.20 + - DJANGO=django==3.1.8 + - DJANGO=django==3.2 # command to install dependencies diff --git a/CHANGELOG.md b/CHANGELOG.md index 736fd67..8a421e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. +## [0.5.8] + +- Fix compatibility with Django 3.2 + ## [0.5.7] - Add ability to refer to related fields in a group by report(@jrutila) diff --git a/docs/source/conf.py b/docs/source/conf.py index 9b572a5..c4ae842 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -24,7 +24,7 @@ master_doc = 'index' # The full version, including alpha/beta/rc tags -release = '0.5.7' +release = '0.5.8' # -- General configuration --------------------------------------------------- diff --git a/slick_reporting/__init__.py b/slick_reporting/__init__.py index d2eb8d6..57dc2c9 100644 --- a/slick_reporting/__init__.py +++ b/slick_reporting/__init__.py @@ -1,6 +1,6 @@ default_app_config = 'slick_reporting.apps.ReportAppConfig' -VERSION = (0, 5, 7) +VERSION = (0, 5, 8) -__version__ = '0.5.7' +__version__ = '0.5.8' From f62e396dd8f8bc4e8efbce18b49fab6203f50fcb Mon Sep 17 00:00:00 2001 From: Ramez Ashraf Date: Thu, 8 Apr 2021 07:17:13 +0200 Subject: [PATCH 2/2] Adds Django version --- setup.cfg | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.cfg b/setup.cfg index a5d2594..d3a8ad4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -17,6 +17,8 @@ classifiers = Framework :: Django Framework :: Django :: 2.2 Framework :: Django :: 3.0 + Framework :: Django :: 3.1 + Framework :: Django :: 3.2 Intended Audience :: Developers Development Status :: 5 - Production/Stable License :: OSI Approved :: BSD License