From e9ba829e3b10e408a97704e2942e4627e951a0a9 Mon Sep 17 00:00:00 2001 From: Tim Schilling Date: Sun, 1 Sep 2024 19:44:59 -0500 Subject: [PATCH] Version 5.0.0-alpha (#1998) * Version 5.0.0-alpha * Update docs/changes.rst --- 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..b7df20707 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 and ASGI 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 ---------------------------------------------------