Skip to content

Commit 549d4ca

Browse files
committed
v1.1.0
1 parent 3f9255c commit 549d4ca

File tree

6 files changed

+28
-8
lines changed

6 files changed

+28
-8
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ python:
44
- 2.7
55
- 3.3
66
- 3.4
7+
- 3.5
78
- pypy
89
- pypy3
910
env:

CHANGELOG.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
==========
2+
Change Log
3+
==========
4+
5+
This document records all notable changes to
6+
`django-settings-export <https://github.com/jkbrzt/django-settings-export>`_.
7+
This project adheres to `Semantic Versioning <http://semver.org/>`_.
8+
9+
10+
1.1.0 (2016-03-20)
11+
------------------
12+
13+
* Added ability to set the name of the context variable to something besides
14+
``settings`` via ``SETTINGS_EXPORT_VARIABLE_NAME``.

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
include README.rst LICENCE
1+
include README.rst CHANGELOG.rst LICENCE

README.rst

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -98,15 +98,15 @@ via ``settings.<KEY>``:
9898
* Accessing a unexported setting key on the ``settings`` object in a template
9999
results in an ``UnexportedSettingError``.
100100

101-
102-
See also the bundled
103-
`demo app <https://github.com/jkbrzt/django-settings-export/tree/master/demo>`_.
104-
105101
If you wish to change the name of the context variable to something besides
106102
``settings``, add ``SETTINGS_EXPORT_VARIABLE_NAME = 'settings_name'`` to your settings.py.
107103
This is useful when some other plugin is already adding ``settings`` to your
108104
template contexts.
109105

106+
See also the bundled
107+
`demo app <https://github.com/jkbrzt/django-settings-export/tree/master/demo>`_.
108+
109+
110110
Development
111111
===========
112112

@@ -123,6 +123,12 @@ Development
123123
# Run tests on all Pythons
124124
$ tox
125125
126+
==========
127+
Change Log
128+
==========
129+
130+
See `CHANGELOG <https://github.com/jkbrzt/django-settings-export/blob/master/CHANGELOG.rst>`_.
131+
126132

127133
Licence
128134
=======
@@ -152,4 +158,3 @@ Jakub Roztocil
152158
.. |coverage| image:: https://img.shields.io/coveralls/jkbrzt/django-settings-export.svg?branch=master
153159
:target: https://coveralls.io/r/jkbrzt/django-settings-export?branch=master
154160
:alt: Coverage
155-

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
setup(
1515
name="django-settings-export",
16-
version='1.0.6',
16+
version='1.1.0',
1717
author="Jakub Roztocil",
1818
author_email="[email protected]",
1919
description='This Django app allows you to export'

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# http://tox.testrun.org/
22

33
[tox]
4-
envlist = py27, py34, pypy
4+
envlist = py27, py35, pypy
55

66

77
[testenv]

0 commit comments

Comments
 (0)