File tree Expand file tree Collapse file tree 6 files changed +28
-8
lines changed Expand file tree Collapse file tree 6 files changed +28
-8
lines changed Original file line number Diff line number Diff line change 4
4
- 2.7
5
5
- 3.3
6
6
- 3.4
7
+ - 3.5
7
8
- pypy
8
9
- pypy3
9
10
env :
Original file line number Diff line number Diff line change
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 ``.
Original file line number Diff line number Diff line change 1
- include README.rst LICENCE
1
+ include README.rst CHANGELOG.rst LICENCE
Original file line number Diff line number Diff line change @@ -98,15 +98,15 @@ via ``settings.<KEY>``:
98
98
* Accessing a unexported setting key on the ``settings `` object in a template
99
99
results in an ``UnexportedSettingError ``.
100
100
101
-
102
- See also the bundled
103
- `demo app <https://github.com/jkbrzt/django-settings-export/tree/master/demo >`_.
104
-
105
101
If you wish to change the name of the context variable to something besides
106
102
``settings ``, add ``SETTINGS_EXPORT_VARIABLE_NAME = 'settings_name' `` to your settings.py.
107
103
This is useful when some other plugin is already adding ``settings `` to your
108
104
template contexts.
109
105
106
+ See also the bundled
107
+ `demo app <https://github.com/jkbrzt/django-settings-export/tree/master/demo >`_.
108
+
109
+
110
110
Development
111
111
===========
112
112
@@ -123,6 +123,12 @@ Development
123
123
# Run tests on all Pythons
124
124
$ tox
125
125
126
+ ==========
127
+ Change Log
128
+ ==========
129
+
130
+ See `CHANGELOG <https://github.com/jkbrzt/django-settings-export/blob/master/CHANGELOG.rst >`_.
131
+
126
132
127
133
Licence
128
134
=======
@@ -152,4 +158,3 @@ Jakub Roztocil
152
158
.. |coverage | image :: https://img.shields.io/coveralls/jkbrzt/django-settings-export.svg?branch=master
153
159
:target: https://coveralls.io/r/jkbrzt/django-settings-export?branch=master
154
160
:alt: Coverage
155
-
Original file line number Diff line number Diff line change 13
13
14
14
setup (
15
15
name = "django-settings-export" ,
16
- version = '1.0.6 ' ,
16
+ version = '1.1.0 ' ,
17
17
author = "Jakub Roztocil" ,
18
18
19
19
description = 'This Django app allows you to export'
Original file line number Diff line number Diff line change 1
1
# http://tox.testrun.org/
2
2
3
3
[tox]
4
- envlist = py27, py34 , pypy
4
+ envlist = py27, py35 , pypy
5
5
6
6
7
7
[testenv]
You can’t perform that action at this time.
0 commit comments