Updated changelog and bumped version up a notch.

This commit is contained in:
Jannis Leidel 2013-09-12 19:22:25 +02:00
parent 76d68c6e15
commit ff2b636081
2 changed files with 9 additions and 1 deletions

View file

@ -3,6 +3,14 @@
Changelog
---------
v0.5.1 (2013-09-12)
^^^^^^^^^^^^^^^^^^^
- Prevented accidentally parsing the command line options to look for the
``--configuration`` option outside of Django's management commands.
This should fix a problem with gunicorn's own ``--config`` option.
Thanks to Brian Rosner for the report.
v0.5 (2013-09-09)
^^^^^^^^^^^^^^^^^

View file

@ -2,5 +2,5 @@
from .base import Settings, Configuration
from .decorators import pristinemethod
__version__ = '0.5'
__version__ = '0.5.1'
__all__ = ['Configuration', 'pristinemethod', 'Settings']