D'oh, there never was a 0.2 on PyPI. Bumped version down again.

This commit is contained in:
Jannis Leidel 2013-03-27 16:59:50 +01:00
parent 87f2b4723d
commit f7c1206a1e
2 changed files with 9 additions and 14 deletions

View file

@ -3,33 +3,28 @@
Changelog
---------
v0.3 (2013-03-27)
v0.2 (2013-03-27)
^^^^^^^^^^^^^^^^^
- **backward incompatible change** Dropped support for Python 2.5.
- **backward incompatible change** Dropped support for Python 2.5! Please use
the 0.1 version if you really want.
- Added Python>3.2 and Django 1.5 support!
- Catch error when getting or evaluating callable setting class attributes.
- Extended tests.
- Simplified and extended tests.
- Added ``-C``/``--configration`` option to management command base class
to follow the example of the ``--settings`` option.
v0.2 (2012-09-21)
^^^^^^^^^^^^^^^^^
- Added optional ``--configuration`` management command option similar
- Added optional ``-C``/``--configuration`` management command option similar
to Django's ``--settings`` option
- Fixed the runserver message about which setting is used to
show the correct class
show the correct class.
- Stopped hiding AttributeErrors happening during initialization
of settings classes
of settings classes.
- Simplified tests
- Added FastCGI helper.
- Minor documentation fixes

View file

@ -1,5 +1,5 @@
# flake8: noqa
from .base import Settings
__version__ = '0.3'
__version__ = '0.2'
__all__ = ['Settings']