From b6ae021080a53f5d08d8671fbb909527e6140152 Mon Sep 17 00:00:00 2001 From: Tim Schilling Date: Mon, 13 Jan 2025 19:58:54 -0600 Subject: [PATCH] Version 5.0.1 --- 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 369220452..99b127526 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 5.0.0. It works on +The current stable version of the Debug Toolbar is 5.0.1. 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 470292dd6..2180a5880 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 = "5.0.0" +VERSION = "5.0.1" # 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 5e548c299..bb5554fb8 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -4,6 +4,9 @@ Change log Pending ------- +5.0.1 (2025-01-13) +------------------ +* Fixing the build and release process. No functional changes. 5.0.0 (2025-01-11) ------------------ diff --git a/docs/conf.py b/docs/conf.py index bd5270db9..c8a6a5cea 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 = "5.0.0" +release = "5.0.1" # -- General configuration ---------------------------------------------------