Skip to content

Commit e16db82

Browse files
committed
fix: resolve merge conflicts
2 parents ae42a1e + 0b7c8d8 commit e16db82

6 files changed

Lines changed: 14 additions & 6 deletions

File tree

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,6 @@ Fixes # (issue)
1010

1111
- [ ] I have added the relevant tests for this change.
1212
- [ ] I have added an item to the Pending section of ``docs/changes.rst``.
13+
14+
#### AI/LLM Usage
15+
- [ ] This PR includes code generated with the help of an AI/LLM

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ repos:
1919
- id: django-upgrade
2020
args: [--target-version, "4.2"]
2121
- repo: https://github.com/adamchainz/djade-pre-commit
22-
rev: "1.6.0"
22+
rev: "1.7.0"
2323
hooks:
2424
- id: djade
2525
args: [--target-version, "4.2"]
@@ -29,12 +29,12 @@ repos:
2929
- id: rst-backticks
3030
- id: rst-directive-colons
3131
- repo: https://github.com/biomejs/pre-commit
32-
rev: v2.3.8
32+
rev: v2.3.10
3333
hooks:
3434
- id: biome-check
3535
verbose: true
3636
- repo: https://github.com/astral-sh/ruff-pre-commit
37-
rev: 'v0.14.8'
37+
rev: 'v0.14.11'
3838
hooks:
3939
- id: ruff
4040
args: [--fix, --exit-non-zero-on-fix]

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Here's a screenshot of the toolbar in action:
4040
In addition to the built-in panels, a number of third-party panels are
4141
contributed by the community.
4242

43-
The current stable version of the Debug Toolbar is 6.1.0. It works on
43+
The current stable version of the Debug Toolbar is 6.2.0. It works on
4444
Django ≥ 4.2.0.
4545

4646
The Debug Toolbar has experimental support for `Django's asynchronous views

debug_toolbar/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# Do not use pkg_resources to find the version but set it here directly!
66
# see issue #1446
7-
VERSION = "6.1.0"
7+
VERSION = "6.2.0"
88

99
# Code that discovers files or modules in INSTALLED_APPS imports this module.
1010
urls = "debug_toolbar.urls", APP_NAME

docs/changes.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ Pending
88
limits. When ``SQLParseError`` is raised, the SQL panel now automatically
99
disables grouping and retries formatting, preventing crashes with large
1010
queries.
11+
12+
6.2.0 (2026-01-20)
13+
------------------
14+
15+
1116
* Deprecated ``RedirectsPanel`` in favor of ``HistoryPanel`` for viewing
1217
toolbar data from redirected requests.
1318
* Fixed support for generating code coverage comments in PRs.

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
copyright = copyright.format(datetime.date.today().year)
2626

2727
# The full version, including alpha/beta/rc tags
28-
release = "6.1.0"
28+
release = "6.2.0"
2929

3030

3131
# -- General configuration ---------------------------------------------------

0 commit comments

Comments
 (0)