diff --git a/configurations/__init__.py b/configurations/__init__.py index ee7aeeb..6d5e021 100644 --- a/configurations/__init__.py +++ b/configurations/__init__.py @@ -2,7 +2,7 @@ from .base import Settings, Configuration from .decorators import pristinemethod -__version__ = '0.8' +__version__ = '1.0' __all__ = ['Configuration', 'pristinemethod', 'Settings'] diff --git a/docs/changes.rst b/docs/changes.rst index acf18de..594bd04 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -3,6 +3,27 @@ Changelog --------- +v1.0 (2016-01-04) +^^^^^^^^^^^^^^^^^ + +- Project has moved to `Jazzband `_. See guidelines for + contributing. + +- Support for Django 1.8 and above. + +- Allow ``Value`` classes to be used outside of ``Configuration`` classes. (#62) + +- Fixed "Value with ValidationMixin will raise ValueError if no default assigned". (#69) + +- Fixed wrong behaviour when assigning BooleanValue. (#83) + +- Add ability to programmatically call Django commands from configurations using + ``call_command``. + +- Added SingleNestedTupleValue and SingleNestedListValue classes. (#85) + +- Several other miscellaneous bugfixes. + v0.8 (2014-01-16) ^^^^^^^^^^^^^^^^^