Skip to content

Commit 080ce84

Browse files
committed
django-debug-toolbar 3.0a2
1 parent 3e626df commit 080ce84

File tree

6 files changed

+11
-8
lines changed

6 files changed

+11
-8
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
.PHONY: flake8 example test coverage translatable_strings update_translations
22

33
style:
4-
isort -rc debug_toolbar example tests
4+
isort debug_toolbar example tests
55
black --target-version=py35 debug_toolbar example tests setup.py
66
flake8 debug_toolbar example tests
77

88
style_check:
9-
isort -rc -c debug_toolbar example tests
9+
isort -c debug_toolbar example tests
1010
black --target-version=py34 --check debug_toolbar example tests setup.py
1111

1212
flake8:

debug_toolbar/panels/templates/views.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ def template_source(request):
4848

4949
try:
5050
from pygments import highlight
51-
from pygments.lexers import HtmlDjangoLexer
5251
from pygments.formatters import HtmlFormatter
52+
from pygments.lexers import HtmlDjangoLexer
5353

5454
source = highlight(source, HtmlDjangoLexer(), HtmlFormatter())
5555
source = mark_safe(source)

docs/changes.rst

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Change log
22
==========
33

4-
3.0a1 (2020-06-05)
4+
3.0a2 (2020-07-15)
55
------------------
66

77
* Added an ``.editorconfig`` file specifying indentation rules etc.
@@ -20,6 +20,9 @@ Change log
2020
localStorage.
2121
* Updated the code to avoid a few deprecation warnings and resource warnings.
2222
* Started loading JavaScript as ES6 modules.
23+
* Added support for ``cache.touch()`` when using django-debug-toolbar.
24+
* Eliminated more inline CSS.
25+
* Updated ``tox.ini`` and ``Makefile`` to use isort>=5.
2326

2427
**Backwards incompatible changes**
2528
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@
5959
# built documents.
6060
#
6161
# The short X.Y version.
62-
version = '3.0a1'
62+
version = '3.0a2'
6363
# The full version, including alpha/beta/rc tags.
64-
release = '3.0a1'
64+
release = '3.0a2'
6565

6666
# The language for content autogenerated by Sphinx. Refer to documentation
6767
# for a list of supported languages.

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = django-debug-toolbar
3-
version = 3.0a1
3+
version = 3.0a2
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

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ commands = make style_check
4242
deps =
4343
black>=19.10b0
4444
flake8
45-
isort
45+
isort>=5
4646
skip_install = true
4747

4848
[testenv:eslint]

0 commit comments

Comments
 (0)