diff --git a/CHANGES.rst b/CHANGES.rst index 3079610..b9289a7 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,15 @@ Changelog --------- +v0.2.1 (2013-04-11) +^^^^^^^^^^^^^^^^^^^ + +- Fixed a regression in parsing the new ``-C``/``--configuration`` management + command option. + +- Minor fix in showing the configuration in the ``runserver`` management + command output. + v0.2 (2013-03-27) ^^^^^^^^^^^^^^^^^ diff --git a/configurations/__init__.py b/configurations/__init__.py index 1a4e36e..1537a40 100644 --- a/configurations/__init__.py +++ b/configurations/__init__.py @@ -1,5 +1,5 @@ # flake8: noqa from .base import Settings -__version__ = '0.2' +__version__ = '0.2.1' __all__ = ['Settings'] diff --git a/setup.cfg b/setup.cfg index cef5b1b..f1a6e33 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = django-configurations -version = 0.2 +version = 0.2.1 author = Jannis Leidel author-email = jannis@leidel.info summary = A helper for organizing Django settings.