File tree Expand file tree Collapse file tree 4 files changed +16
-4
lines changed Expand file tree Collapse file tree 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:
3131In addition to the built-in panels, a number of third-party panels are
3232contributed by the community.
3333
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
3535Django ≥ 1.11.
3636
3737Documentation, including installation and configuration instructions, is
Original file line number Diff line number Diff line change 11Change log
22==========
33
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+
4152.0 (2019-06-20)
516----------------
617
Original file line number Diff line number Diff line change 5959# built documents.
6060#
6161# The short X.Y version.
62- version = '2.0 '
62+ version = '2.1 '
6363# The full version, including alpha/beta/rc tags.
64- release = '2.0 '
64+ release = '2.1 '
6565
6666# The language for content autogenerated by Sphinx. Refer to documentation
6767# for a list of supported languages.
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ def readall(path):
1212
1313setup (
1414 name = "django-debug-toolbar" ,
15- version = "2.0 " ,
15+ version = "2.1 " ,
1616 description = "A configurable set of panels that display various debug "
1717 "information about the current request/response." ,
1818 long_description = readall ("README.rst" ),
@@ -34,6 +34,7 @@ def readall(path):
3434 "Framework :: Django :: 2.0" ,
3535 "Framework :: Django :: 2.1" ,
3636 "Framework :: Django :: 2.2" ,
37+ "Framework :: Django :: 3.0" ,
3738 "Intended Audience :: Developers" ,
3839 "License :: OSI Approved :: BSD License" ,
3940 "Operating System :: OS Independent" ,
You can’t perform that action at this time.
0 commit comments