Skip to content

Commit 176614a

Browse files
committed
django-debug-toolbar 3.2
1 parent 8814450 commit 176614a

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

README.rst

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

37-
The current stable version of the Debug Toolbar is 3.1. It works on
37+
The current stable version of the Debug Toolbar is 3.2. It works on
3838
Django ≥ 2.2.
3939

4040
Documentation, including installation and configuration instructions, is

docs/changes.rst

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,21 @@
11
Change log
22
==========
33

4-
unreleased
5-
----------
4+
3.2 (2020-12-03)
5+
----------------
66

77
* Moved CI to GitHub Actions: https://github.com/jazzband/django-debug-toolbar/actions
88
* Stopped crashing when ``request.GET`` and ``request.POST`` are
99
dictionaries instead of ``QueryDict`` instances. This isn't a valid
1010
use of Django but django-debug-toolbar shouldn't crash anyway.
1111
* Fixed a crash in the history panel when sending a JSON POST request
1212
with invalid JSON.
13+
* Added missing signals to the signals panel by default.
14+
* Documented how to avoid CORS errors now that we're using JavaScript
15+
modules.
16+
* Verified support for Python 3.9.
17+
* Added a ``css`` and a ``js`` template block to
18+
``debug_toolbar/base.html`` to allow overriding CSS and JS.
1319

1420

1521
3.2a1 (2020-10-19)
@@ -21,8 +27,7 @@ unreleased
2127
* Continued refactoring the HTML and CSS code for simplicity, continued
2228
improving the use of semantic HTML.
2329
* Stopped caring about prehistoric browsers for good. Started splitting
24-
up the JavaScript code to take advantage of
25-
JavaScript modules.
30+
up the JavaScript code to take advantage of JavaScript modules.
2631
* Continued removing unused CSS.
2732
* Started running Selenium tests on Travis CI.
2833
* Added a system check which prevents using django-debug-toolbar without

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 = "3.2a1"
28+
release = "3.2"
2929

3030

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

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = django-debug-toolbar
3-
version = 3.2a1
3+
version = 3.2
44
description = A configurable set of panels that display various debug information about the current request/response.
55
long_description = file: README.rst
66
author = Rob Hudson

0 commit comments

Comments
 (0)