From 0b59e2406348cf52710866e01328c037b5ea5177 Mon Sep 17 00:00:00 2001 From: Tim Schilling Date: Thu, 1 Feb 2024 13:23:11 -0600 Subject: [PATCH] Version 4.3.0 --- debug_toolbar/__init__.py | 2 +- docs/changes.rst | 3 +++ docs/conf.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/debug_toolbar/__init__.py b/debug_toolbar/__init__.py index dbe08451f..9a8c2b24f 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.2.0" +VERSION = "4.3.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 9ff88b2b8..e2a610991 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -4,6 +4,9 @@ Change log Pending ------- +4.3.0 (2024-02-01) +------------------ + * Dropped support for Django 4.0. * Added Python 3.12 to test matrix. * Removed outdated third-party panels from the list. diff --git a/docs/conf.py b/docs/conf.py index 7fa8e6fce..f87b8f19a 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.2.0" +release = "4.3.0" # -- General configuration ---------------------------------------------------