Skip to content

Commit ff86e11

Browse files
committed
django-debug-toolbar 2.0a1
1 parent e46af89 commit ff86e11

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

README.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ 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.11. It works on Django ≥ 1.11.
34+
The current stable version of the Debug Toolbar is 1.11. It works on
35+
Django ≥ 1.11.
3536

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

docs/changes.rst

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

4-
2.0 UNRELEASED
5-
--------------
4+
2.0a1 (2019-05-16)
5+
------------------
66

77
* Updated ``StaticFilesPanel`` to be compatible with Django 3.0.
88
* The ``ProfilingPanel`` is now enabled but inactive by default.

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.11'
62+
version = '2.0a1'
6363
# The full version, including alpha/beta/rc tags.
64-
release = '1.11'
64+
release = '2.0a1'
6565

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

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22

33
from io import open
44

@@ -12,7 +12,7 @@ def readall(path):
1212

1313
setup(
1414
name="django-debug-toolbar",
15-
version="1.11",
15+
version="2.0a1",
1616
description="A configurable set of panels that display various debug "
1717
"information about the current request/response.",
1818
long_description=readall("README.rst"),

0 commit comments

Comments
 (0)