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 500b6e1..594bd04 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -3,24 +3,22 @@ Changelog --------- -v0.9 (2015-12-18) +v1.0 (2016-01-04) ^^^^^^^^^^^^^^^^^ - Project has moved to `Jazzband `_. See guidelines for contributing. -- Support for django 1.8 and above. Thanks to: - - @benjaminabel - - @jdietrich +- Support for Django 1.8 and above. -- Allow ``Value`` classes to be used outside of ``Configuration`` classes (#62) +- Allow ``Value`` classes to be used outside of ``Configuration`` classes. (#62) -- Fixed "Value with ValidationMixin will raise ValueError if no default assigned" (#69) +- Fixed "Value with ValidationMixin will raise ValueError if no default assigned". (#69) -- Fixed wrong behaviour when assigning BooleanValue (#83) +- Fixed wrong behaviour when assigning BooleanValue. (#83) - Add ability to programmatically call Django commands from configurations using - ``call_command`` + ``call_command``. - Added SingleNestedTupleValue and SingleNestedListValue classes. (#85)