Skip to content

Commit eb7c4cd

Browse files
committed
django-debug-toolbar 3.6
1 parent f1c03eb commit eb7c4cd

File tree

6 files changed

+19
-4
lines changed

6 files changed

+19
-4
lines changed

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Here's a screenshot of the toolbar in action:
4444
In addition to the built-in panels, a number of third-party panels are
4545
contributed by the community.
4646

47-
The current stable version of the Debug Toolbar is 3.5.0. It works on
47+
The current stable version of the Debug Toolbar is 3.6.0. It works on
4848
Django ≥ 3.2.4.
4949

5050
Documentation, including installation and configuration instructions, is

debug_toolbar/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# Do not use pkg_resources to find the version but set it here directly!
66
# see issue #1446
7-
VERSION = "3.5.0"
7+
VERSION = "3.6.0"
88

99
# Code that discovers files or modules in INSTALLED_APPS imports this module.
1010
urls = "debug_toolbar.urls", APP_NAME

docs/changes.rst

+11
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,19 @@ Change log
44
Pending
55
-------
66

7+
3.6.0 (2022-08-17)
8+
------------------
9+
710
* Remove decorator ``signed_data_view`` as it was causing issues with
811
`django-urlconfchecks <https://github.com/AliSayyah/django-urlconfchecks/>`__.
12+
* Added pygments to the test environment and fixed a crash when using the
13+
template panel with Django 4.1 and pygments installed.
14+
* Stayed on top of pre-commit hook and GitHub actions updates.
15+
* Added some workarounds to avoid a Chromium warning which was worrisome to
16+
developers.
17+
* Avoided using deprecated Selenium methods to find elements.
18+
* Raised the minimum Django version from 3.2 to 3.2.4 so that we can take
19+
advantage of backported improvements to the cache connection handler.
920

1021
3.5.0 (2022-06-23)
1122
------------------

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
copyright = copyright.format(datetime.date.today().year)
2626

2727
# The full version, including alpha/beta/rc tags
28-
release = "3.5.0"
28+
release = "3.6.0"
2929

3030

3131
# -- General configuration ---------------------------------------------------

docs/spelling_wordlist.txt

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
backend
22
backends
3+
backported
34
checkbox
45
contrib
56
django
@@ -30,9 +31,12 @@ pylibmc
3031
Pympler
3132
querysets
3233
refactoring
34+
resizing
35+
spellchecking
3336
spooler
3437
stacktrace
3538
stacktraces
39+
startup
3640
timeline
3741
tox
3842
Transifex

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = django-debug-toolbar
3-
version = 3.5.0
3+
version = 3.6.0
44
description = A configurable set of panels that display various debug information about the current request/response.
55
long_description = file: README.rst
66
long_description_content_type = text/x-rst

0 commit comments

Comments
 (0)