From ffdac056779aec2adfd8cecac267653ff3c12919 Mon Sep 17 00:00:00 2001 From: Tim Schilling Date: Mon, 19 Jan 2026 16:23:27 -0600 Subject: [PATCH] Version 6.2.0 --- README.rst | 2 +- debug_toolbar/__init__.py | 2 +- docs/changes.rst | 3 +++ docs/conf.py | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 9fee50d24..fd4245bb2 100644 --- a/README.rst +++ b/README.rst @@ -40,7 +40,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 6.1.0. It works on +The current stable version of the Debug Toolbar is 6.2.0. It works on Django ≥ 4.2.0. The Debug Toolbar has experimental support for `Django's asynchronous views diff --git a/debug_toolbar/__init__.py b/debug_toolbar/__init__.py index 5bbbf6e9c..f8b2bc41a 100644 --- a/debug_toolbar/__init__.py +++ b/debug_toolbar/__init__.py @@ -4,7 +4,7 @@ # Do not use pkg_resources to find the version but set it here directly! # see issue #1446 -VERSION = "6.1.0" +VERSION = "6.2.0" # Code that discovers files or modules in INSTALLED_APPS imports this module. urls = "debug_toolbar.urls", APP_NAME diff --git a/docs/changes.rst b/docs/changes.rst index 948b90dec..7b1c39849 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -4,6 +4,9 @@ Change log Pending ------- +6.2.0 (2026-01-20) +------------------ + * Deprecated ``RedirectsPanel`` in favor of ``HistoryPanel`` for viewing toolbar data from redirected requests. * Fixed support for generating code coverage comments in PRs. diff --git a/docs/conf.py b/docs/conf.py index 54f154192..d4b671350 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -25,7 +25,7 @@ copyright = copyright.format(datetime.date.today().year) # The full version, including alpha/beta/rc tags -release = "6.1.0" +release = "6.2.0" # -- General configuration ---------------------------------------------------