From 6ef77a16b942dac293d65b93407bdf9dab3876ce Mon Sep 17 00:00:00 2001 From: Tim Schilling Date: Thu, 30 Oct 2025 14:33:25 -0500 Subject: [PATCH] Version 6.1.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 7f4a53fbc..9fee50d24 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.0.0. It works on +The current stable version of the Debug Toolbar is 6.1.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 e97f29e1e..5bbbf6e9c 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.0.0" +VERSION = "6.1.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 7dfb3b688..5c9b65fef 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -4,6 +4,9 @@ Change log Pending ------- +6.1.0 (2025-10-30) +------------------ + * Added support for async to timer panel. * Added a note about the default password in ``make example``. * Removed logging about the toolbar failing to serialize a value into JSON. diff --git a/docs/conf.py b/docs/conf.py index 656eb1ebc..54f154192 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.0.0" +release = "6.1.0" # -- General configuration ---------------------------------------------------