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) ~~~~~~~~~~~~~~~~~~~