From 7ab6b0f4802f19a28e4141df0be70b4f0b28eae1 Mon Sep 17 00:00:00 2001 From: tschilling Date: Thu, 10 Aug 2023 20:25:08 -0500 Subject: [PATCH] Version 4.2.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 1a9cf7c93..dbe08451f 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.1.0" +VERSION = "4.2.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 5b7aaf1c1..89f5bdc7e 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -4,6 +4,9 @@ Change log Pending ------- +4.2.0 (2023-08-10) +------------------ + * Adjusted app directories system check to allow for nested template loaders. * Switched from flake8, isort and pyupgrade to `ruff `__. diff --git a/docs/conf.py b/docs/conf.py index 219a2f440..7fa8e6fce 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.1.0" +release = "4.2.0" # -- General configuration ---------------------------------------------------