Skip to content

Commit 84bf096

Browse files
committed
django-debug-toolbar 2.1
1 parent 9f205d9 commit 84bf096

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
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 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
3535
Django ≥ 1.11.
3636

3737
Documentation, including installation and configuration instructions, is

docs/changes.rst

+11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
Change 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+
415
2.0 (2019-06-20)
516
----------------
617

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 = '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.

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def readall(path):
1212

1313
setup(
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",

0 commit comments

Comments
 (0)