Prepare next release 1.0

This commit is contained in:
Nicolas Delaby 2016-01-04 14:24:36 +01:00
parent 4da8939df0
commit 261817d965
2 changed files with 7 additions and 9 deletions

View file

@ -2,7 +2,7 @@
from .base import Settings, Configuration
from .decorators import pristinemethod
__version__ = '0.8'
__version__ = '1.0'
__all__ = ['Configuration', 'pristinemethod', 'Settings']

View file

@ -3,24 +3,22 @@
Changelog
---------
v0.9 (2015-12-18)
v1.0 (2016-01-04)
^^^^^^^^^^^^^^^^^
- Project has moved to `Jazzband <https://jazzband.co/>`_. 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)