diff --git a/constance/__init__.py b/constance/__init__.py index 46b842d..0e51823 100644 --- a/constance/__init__.py +++ b/constance/__init__.py @@ -1,6 +1,6 @@ from django.utils.functional import LazyObject -__version__ = '1.3.4' +__version__ = '2.0.0' default_app_config = 'constance.apps.ConstanceConfig' diff --git a/docs/changes.rst b/docs/changes.rst index 7c9ab9b..7a8dc3d 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -1,6 +1,23 @@ Changelog --------- +v2.0 (2017/02/17) +~~~~~~~~~~~~~~~~~ + +* **BACKWARD INCOMPATIBLE** Added the old value to the config_updated signal. + +* Added a `get_changelist_form` hook in the ModelAdmin. + +* Fix create_perm in apps.py to use database alias given by the post_migrate + signal. + +* Added tests for django 1.11. + +* Fix Reset to default to work with boolean/checkboxes. + +* Fix handling of MultiValueField's (eg SplitDateTimeField) on the command + line. + v1.3.4 (2016/12/23) ~~~~~~~~~~~~~~~~~~~