Skip to content

Commit

Permalink
django-debug-toolbar 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiask committed Aug 17, 2022
1 parent f1c03eb commit eb7c4cd
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -44,7 +44,7 @@ Here's a screenshot of the toolbar in action:
In addition to the built-in panels, a number of third-party panels are
contributed by the community.

The current stable version of the Debug Toolbar is 3.5.0. It works on
The current stable version of the Debug Toolbar is 3.6.0. It works on
Django ≥ 3.2.4.

Documentation, including installation and configuration instructions, is
Expand Down
2 changes: 1 addition & 1 deletion debug_toolbar/__init__.py
Expand Up @@ -4,7 +4,7 @@

# Do not use pkg_resources to find the version but set it here directly!
# see issue #1446
VERSION = "3.5.0"
VERSION = "3.6.0"

# Code that discovers files or modules in INSTALLED_APPS imports this module.
urls = "debug_toolbar.urls", APP_NAME
11 changes: 11 additions & 0 deletions docs/changes.rst
Expand Up @@ -4,8 +4,19 @@ Change log
Pending
-------

3.6.0 (2022-08-17)
------------------

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

3.5.0 (2022-06-23)
------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -25,7 +25,7 @@
copyright = copyright.format(datetime.date.today().year)

# The full version, including alpha/beta/rc tags
release = "3.5.0"
release = "3.6.0"


# -- General configuration ---------------------------------------------------
Expand Down
4 changes: 4 additions & 0 deletions docs/spelling_wordlist.txt
@@ -1,5 +1,6 @@
backend
backends
backported
checkbox
contrib
django
Expand Down Expand Up @@ -30,9 +31,12 @@ pylibmc
Pympler
querysets
refactoring
resizing
spellchecking
spooler
stacktrace
stacktraces
startup
timeline
tox
Transifex
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
@@ -1,6 +1,6 @@
[metadata]
name = django-debug-toolbar
version = 3.5.0
version = 3.6.0
description = A configurable set of panels that display various debug information about the current request/response.
long_description = file: README.rst
long_description_content_type = text/x-rst
Expand Down

0 comments on commit eb7c4cd

Please sign in to comment.