Skip to content

Commit

Permalink
v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jkbrzt committed Mar 10, 2016
1 parent 3f9255c commit 549d4ca
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 8 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ python:
- 2.7
- 3.3
- 3.4
- 3.5
- pypy
- pypy3
env:
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
==========
Change Log
==========

This document records all notable changes to
`django-settings-export <https://github.com/jkbrzt/django-settings-export>`_.
This project adheres to `Semantic Versioning <http://semver.org/>`_.


1.1.0 (2016-03-20)
------------------

* Added ability to set the name of the context variable to something besides
``settings`` via ``SETTINGS_EXPORT_VARIABLE_NAME``.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1 @@
include README.rst LICENCE
include README.rst CHANGELOG.rst LICENCE
15 changes: 10 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -98,15 +98,15 @@ via ``settings.<KEY>``:
* Accessing a unexported setting key on the ``settings`` object in a template
results in an ``UnexportedSettingError``.


See also the bundled
`demo app <https://github.com/jkbrzt/django-settings-export/tree/master/demo>`_.

If you wish to change the name of the context variable to something besides
``settings``, add ``SETTINGS_EXPORT_VARIABLE_NAME = 'settings_name'`` to your settings.py.
This is useful when some other plugin is already adding ``settings`` to your
template contexts.

See also the bundled
`demo app <https://github.com/jkbrzt/django-settings-export/tree/master/demo>`_.


Development
===========

Expand All @@ -123,6 +123,12 @@ Development
# Run tests on all Pythons
$ tox
==========
Change Log
==========

See `CHANGELOG <https://github.com/jkbrzt/django-settings-export/blob/master/CHANGELOG.rst>`_.


Licence
=======
Expand Down Expand Up @@ -152,4 +158,3 @@ Jakub Roztocil
.. |coverage| image:: https://img.shields.io/coveralls/jkbrzt/django-settings-export.svg?branch=master
:target: https://coveralls.io/r/jkbrzt/django-settings-export?branch=master
:alt: Coverage

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

setup(
name="django-settings-export",
version='1.0.6',
version='1.1.0',
author="Jakub Roztocil",
author_email="jakub@roztocil.co",
description='This Django app allows you to export'
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# http://tox.testrun.org/

[tox]
envlist = py27, py34, pypy
envlist = py27, py35, pypy


[testenv]
Expand Down

0 comments on commit 549d4ca

Please sign in to comment.