From 8799a99248f73030d94f978ad5c911ce19e37787 Mon Sep 17 00:00:00 2001 From: Tim Schilling Date: Tue, 27 Aug 2024 08:34:53 -0500 Subject: [PATCH 1/2] Version 5.0.0-alpha --- README.rst | 2 +- debug_toolbar/__init__.py | 2 +- docs/changes.rst | 6 ++++++ docs/conf.py | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 362df2f95..9f62b85b5 100644 --- a/README.rst +++ b/README.rst @@ -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 4.4.6. It works on +The current stable version of the Debug Toolbar is 5.0.0-alpha. It works on Django ≥ 4.2.0. The Debug Toolbar does not currently support `Django's asynchronous views diff --git a/debug_toolbar/__init__.py b/debug_toolbar/__init__.py index d98d6efae..f07c3be8b 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 = "4.4.6" +VERSION = "5.0.0-alpha" # 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 85488250b..d8cdd1a3a 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -4,6 +4,12 @@ Change log Pending ------- +5.0.0-alpha (2024-09-01) +------------------------ + +* Support async applications, but not concurrent requests from + `Google Summer of Code Project 2024 + `__. * Added Django 5.1 to the CI matrix. * Support select and explain buttons for ``UNION`` queries on PostgreSQL. * Fixed internal toolbar requests being instrumented if the Django setting diff --git a/docs/conf.py b/docs/conf.py index 924869c05..16f107896 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 = "4.4.6" +release = "5.0.0-alpha" # -- General configuration --------------------------------------------------- From 0f7bcfb8f26ef7f13ef36169585a1e8eb8d340ef Mon Sep 17 00:00:00 2001 From: Tim Schilling Date: Tue, 27 Aug 2024 08:41:20 -0500 Subject: [PATCH 2/2] Update docs/changes.rst --- docs/changes.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/changes.rst b/docs/changes.rst index d8cdd1a3a..b7df20707 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -7,7 +7,7 @@ Pending 5.0.0-alpha (2024-09-01) ------------------------ -* Support async applications, but not concurrent requests from +* Support async applications and ASGI from `Google Summer of Code Project 2024 `__. * Added Django 5.1 to the CI matrix.