File tree 4 files changed +13
-6
lines changed
4 files changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ Here's a screenshot of the toolbar in action:
31
31
In addition to the built-in panels, a number of third-party panels are
32
32
contributed by the community.
33
33
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.
35
35
36
36
Documentation, including installation and configuration instructions, is
37
37
available at https://django-debug-toolbar.readthedocs.io/.
Original file line number Diff line number Diff line change 1
1
Change log
2
2
==========
3
3
4
- 1.7 (upcoming)
4
+ 1.8 (upcoming)
5
5
--------------
6
6
7
+ 1.7
8
+ ---
9
+
7
10
Bugfixes
8
11
~~~~~~~~
9
12
10
13
* Recursive template extension is now understood.
11
14
* Deprecation warnings were fixed.
12
15
* The SQL panel uses HMAC instead of simple hashes to verify that SQL
13
16
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.
15
22
16
23
1.6
17
24
---
Original file line number Diff line number Diff line change 59
59
# built documents.
60
60
#
61
61
# The short X.Y version.
62
- version = '1.6 '
62
+ version = '1.7 '
63
63
# The full version, including alpha/beta/rc tags.
64
- release = '1.6 '
64
+ release = '1.7 '
65
65
66
66
# The language for content autogenerated by Sphinx. Refer to documentation
67
67
# for a list of supported languages.
Original file line number Diff line number Diff line change 4
4
5
5
setup (
6
6
name = 'django-debug-toolbar' ,
7
- version = '1.6 ' ,
7
+ version = '1.7 ' ,
8
8
description = 'A configurable set of panels that display various debug '
9
9
'information about the current request/response.' ,
10
10
long_description = open ('README.rst' , encoding = 'utf-8' ).read (),
You can’t perform that action at this time.
0 commit comments