Skip to content

Commit 36f1027

Browse files
committed
v3.2.0
1 parent b1733a9 commit 36f1027

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
strategy:
2929
matrix:
3030
python-version: ['3.9', '3.10', '3.11', '3.12', ]
31-
django-version: ['42', '50', ]
31+
django-version: ['42', '50', '51', ]
3232

3333
exclude:
3434
- python-version: '3.9'

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
repos:
55
- repo: https://github.com/astral-sh/ruff-pre-commit
6-
rev: v0.5.2
6+
rev: v0.5.7
77
hooks:
88
# Run the Ruff linter.
99
- id: ruff
@@ -20,14 +20,14 @@ repos:
2020
files: '(?:README\.md|docs\/.*\.(?:md|rst))'
2121

2222
- repo: https://github.com/asottile/pyupgrade
23-
rev: v3.16.0
23+
rev: v3.17.0
2424
hooks:
2525
- id: pyupgrade
2626
args: [ --py39-plus ]
2727
stages: [ push ]
2828

2929
- repo: https://github.com/adamchainz/django-upgrade
30-
rev: 1.19.0
30+
rev: 1.20.0
3131
hooks:
3232
- id: django-upgrade
3333
args: [--target-version, "4.2"]

CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
**3.2.0**
4+
* Added Django 5.1 support
5+
36
**3.1.3**
47
* Added SECURITY.md
58
* Updated linters
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Add simple dynamic interaction to the otherwise static django admin."""
22

3-
__version__ = "3.1.3"
3+
__version__ = "3.2.0"

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ classifiers = [
1515
"Framework :: Django",
1616
"Framework :: Django :: 4.2",
1717
"Framework :: Django :: 5.0",
18+
"Framework :: Django :: 5.1",
1819
"Intended Audience :: Developers",
1920
"License :: OSI Approved :: MIT License",
2021
"Natural Language :: English",
@@ -179,6 +180,7 @@ legacy_tox_ini = """
179180
deps =
180181
django42: Django==4.2.*
181182
django50: Django==5.0.*
183+
django51: Django==5.1.*
182184
extras = dev,
183185
commands =
184186
coverage run -m pytest --ds settings tests

0 commit comments

Comments
 (0)