From 0e94d13b2a7cafaaa2ec5880d94c786144ac224d Mon Sep 17 00:00:00 2001 From: Camilo Nova Date: Mon, 23 Dec 2019 14:07:28 -0500 Subject: [PATCH] Bump version --- constance/__init__.py | 2 +- docs/changes.rst | 15 +++++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/constance/__init__.py b/constance/__init__.py index 7ba1b9d..745b294 100644 --- a/constance/__init__.py +++ b/constance/__init__.py @@ -1,7 +1,7 @@ from django.utils.functional import LazyObject from . import checks -__version__ = '2.4.0' +__version__ = '2.5.0' default_app_config = 'constance.apps.ConstanceConfig' diff --git a/docs/changes.rst b/docs/changes.rst index 87b256e..5c252c6 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -1,6 +1,21 @@ Changelog --------- +v2.5.0 (2019/12/23) +~~~~~~~~~~~~~~~~~~~ + +* Made results table responsive for Django 2 admin + +* Add a Django system check that CONFIG_FIELDSETS accounts for all of CONFIG + +* Rewrite set() method of database backend to reduce number of queries + +* Fixed "can't compare offset-naive and offset-aware datetimes" when USE_TZ = True + +* Fixed compatibility issue with Django 3.0 due to django.utils.six + +* Add Turkish language + v2.4.0 (2019/03/16) ~~~~~~~~~~~~~~~~~~~