From 25c860e4bde27405c874869772a52d3ed1d4f10c Mon Sep 17 00:00:00 2001 From: Tim Schilling Date: Sun, 26 May 2024 09:37:50 -0500 Subject: [PATCH] Version 4.4.1 --- 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 24dba95a3..c9a25ce1e 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.0. It works on +The current stable version of the Debug Toolbar is 4.4.1. 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 ecf3e559a..45faf6d47 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.0" +VERSION = "4.4.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 b6256fe2f..84821c56b 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -5,6 +5,12 @@ Pending ------- +4.4.1 (2024-05-26) +------------------ + +* Pin metadata version to 2.2 to be compatible with Jazzband release + process. + 4.4.0 (2024-05-26) ------------------ diff --git a/docs/conf.py b/docs/conf.py index f4fd5491d..512455e39 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.0" +release = "4.4.1" # -- General configuration ---------------------------------------------------