Skip to content

Commit 4024040

Browse files
committed
Bump the version number and amend the changelog
1 parent 743828d commit 4024040

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Here's a screenshot of the toolbar in action:
3131
In addition to the built-in panels, a number of third-party panels are
3232
contributed by the community.
3333

34-
The current version of the Debug Toolbar is 1.6. It works on Django ≥ 1.8.
34+
The current version of the Debug Toolbar is 1.7. It works on Django ≥ 1.8.
3535

3636
Documentation, including installation and configuration instructions, is
3737
available at https://django-debug-toolbar.readthedocs.io/.

docs/changes.rst

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,24 @@
11
Change log
22
==========
33

4-
1.7 (upcoming)
4+
1.8 (upcoming)
55
--------------
66

7+
1.7
8+
---
9+
710
Bugfixes
811
~~~~~~~~
912

1013
* Recursive template extension is now understood.
1114
* Deprecation warnings were fixed.
1215
* The SQL panel uses HMAC instead of simple hashes to verify that SQL
1316
statements have not been changed. Also, the handling of bytes and text
14-
for hashing has been hardened.
17+
for hashing has been hardened. Also, a bug with Python's division
18+
handling has been fixed for improved Python 3 support.
19+
* An error with django-jinja has been fixed.
20+
* A few CSS classes have been prefixed with ``djdt-`` to avoid
21+
conflicting class names.
1522

1623
1.6
1724
---

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@
5959
# built documents.
6060
#
6161
# The short X.Y version.
62-
version = '1.6'
62+
version = '1.7'
6363
# The full version, including alpha/beta/rc tags.
64-
release = '1.6'
64+
release = '1.7'
6565

6666
# The language for content autogenerated by Sphinx. Refer to documentation
6767
# for a list of supported languages.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
setup(
66
name='django-debug-toolbar',
7-
version='1.6',
7+
version='1.7',
88
description='A configurable set of panels that display various debug '
99
'information about the current request/response.',
1010
long_description=open('README.rst', encoding='utf-8').read(),

0 commit comments

Comments
 (0)