mirror of
https://github.com/jazzband/django-configurations.git
synced 2026-03-16 22:20:27 +00:00
D'oh, there never was a 0.2 on PyPI. Bumped version down again.
This commit is contained in:
parent
87f2b4723d
commit
f7c1206a1e
2 changed files with 9 additions and 14 deletions
21
CHANGES.rst
21
CHANGES.rst
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
# flake8: noqa
|
||||
from .base import Settings
|
||||
|
||||
__version__ = '0.3'
|
||||
__version__ = '0.2'
|
||||
__all__ = ['Settings']
|
||||
|
|
|
|||
Loading…
Reference in a new issue