Merge pull request #136 from ticosax/changelog-release-1.0

Changelog for release 1.0
This commit is contained in:
Nicolas Delaby 2016-01-04 19:43:22 +01:00
commit 376b5947a8
2 changed files with 22 additions and 1 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,6 +3,27 @@
Changelog
---------
v1.0 (2016-01-04)
^^^^^^^^^^^^^^^^^
- Project has moved to `Jazzband <https://jazzband.co/>`_. 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)
^^^^^^^^^^^^^^^^^