Navigation Menu

Skip to content

Commit

Permalink
Added a changelog and include it both from the docs and from the setu…
Browse files Browse the repository at this point in the history
…p.py.
  • Loading branch information
jezdez committed Sep 21, 2012
1 parent 2e2d77f commit c616caf
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 5 deletions.
25 changes: 25 additions & 0 deletions CHANGES.rst
@@ -0,0 +1,25 @@
.. :changelog:
Changelog
---------

v0.2 (2012-09-21)
^^^^^^^^^^^^^^^^^

- Added optional ``--configuration`` management command option similar
to Django's ``--settings`` option

- Fixed the runserver message about which setting is used to
show the correct class

- Stopped hiding AttributeErrors happening during initialization
of settings classes

- Simplified tests

- Minor documentation fixes

v0.1 (2012-07-21)
^^^^^^^^^^^^^^^^^

- Initial public release
1 change: 1 addition & 0 deletions MANIFEST.in
@@ -1,4 +1,5 @@
include README.rst
include CHANGES.rst
include .travis.yml
include manage.py
include requirements/tests.txt
Expand Down
12 changes: 8 additions & 4 deletions docs/index.rst
Expand Up @@ -89,7 +89,7 @@ should be ``Prod``. In bash that would be::

Alternatively you can use the ``--configuration`` option when using Django
management commands along the lines of Django's default ``--settings``
command line option::
command line option, e.g.::

python manage.py runserver --settings=mysite.settings --configuration=Prod

Expand Down Expand Up @@ -131,8 +131,10 @@ a Settings class::
DEBUG = False
# ...

Thanks
------
Alternatives
------------

Many thanks to those project that have previously solved these problems:

- The Pinax_ project for spearheading the efforts to extend the Django
project metaphor with reusable project templates and a flexible
Expand All @@ -152,4 +154,6 @@ requests and bug reports at the usual place:

https://github.com/jezdez/django-configurations/issues

Thanks!
Thanks!

.. include:: ../CHANGES.rst
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -23,7 +23,7 @@ def find_version(*parts):
version=find_version('configurations', '__init__.py'),
description='A helper for organizing Django project settings by relying '
'on well established programming patterns.',
long_description=read('README.rst'),
long_description=read('README.rst') + u'\n\n' + read('CHANGES.rst'),
author='Jannis Leidel',
author_email='jannis@leidel.info',
license='BSD',
Expand Down

0 comments on commit c616caf

Please sign in to comment.