File tree 4 files changed +16
-4
lines changed
4 files changed +16
-4
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 stable version of the Debug Toolbar is 2.0 . It works on
34
+ The current stable version of the Debug Toolbar is 2.1 . It works on
35
35
Django ≥ 1.11.
36
36
37
37
Documentation, including installation and configuration instructions, is
Original file line number Diff line number Diff line change 1
1
Change log
2
2
==========
3
3
4
+ 2.1 (2019-11-12)
5
+ ----------------
6
+
7
+ * Changed the Travis CI matrix to run style checks first.
8
+ * Exposed the ``djdt.init `` function too.
9
+ * Small improvements to the code to take advantage of newer Django APIs
10
+ and avoid warnings because of deprecated code.
11
+ * Verified compatibility with the upcoming Django 3.0 (at the time of
12
+ writing).
13
+
14
+
4
15
2.0 (2019-06-20)
5
16
----------------
6
17
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 = '2.0 '
62
+ version = '2.1 '
63
63
# The full version, including alpha/beta/rc tags.
64
- release = '2.0 '
64
+ release = '2.1 '
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 @@ -12,7 +12,7 @@ def readall(path):
12
12
13
13
setup (
14
14
name = "django-debug-toolbar" ,
15
- version = "2.0 " ,
15
+ version = "2.1 " ,
16
16
description = "A configurable set of panels that display various debug "
17
17
"information about the current request/response." ,
18
18
long_description = readall ("README.rst" ),
@@ -34,6 +34,7 @@ def readall(path):
34
34
"Framework :: Django :: 2.0" ,
35
35
"Framework :: Django :: 2.1" ,
36
36
"Framework :: Django :: 2.2" ,
37
+ "Framework :: Django :: 3.0" ,
37
38
"Intended Audience :: Developers" ,
38
39
"License :: OSI Approved :: BSD License" ,
39
40
"Operating System :: OS Independent" ,
You can’t perform that action at this time.
0 commit comments