Skip to content

Commit b5b642a

Browse files
authored
add support for django 5.x (#184)
* move upper and lower bounds of django versions to match current LTS versions * add django 5.2 to the test matrix * bumped version * changelog entry
1 parent ce4596f commit b5b642a

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.34.1
2+
current_version = 0.34.2
33

44
[bumpversion:file:pyproject.toml]
55

.github/workflows/tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
python-version: ['3.11', '3.12']
12+
django: ['4.2', '5.2']
1213

1314
steps:
1415
- uses: actions/checkout@v4

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
# [Unreleased]
88

9+
# [0.34.2]
10+
- [PR 184](https://github.com/salesforce/django-declarative-apis/pull/184) Add support for Django 5.x
11+
912
# [0.34.1]
1013
- [PR 179](https://github.com/salesforce/django-declarative-apis/pull/179) Move the 204 response handling fix to resources.
1114

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
# built documents.
7676

7777
# The full version, including alpha/beta/rc tags.
78-
release = "0.34.1" # set by bumpversion
78+
release = "0.34.2" # set by bumpversion
7979

8080
# The short X.Y version.
8181
version = release.rsplit(".", 1)[0]

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "django-declarative-apis"
7-
version = "0.34.1" # set by bumpversion
7+
version = "0.34.2" # set by bumpversion
88
description = "Simple, readable, declarative APIs for Django"
99
readme = "README.md"
1010
dependencies = [
11-
"Django >=3.2, <5",
11+
"Django >=4.2, <6",
1212
"celery>=4.0.2,!=4.1.0",
1313
"cryptography>=2.0",
1414
"decorator==4.0.11",

0 commit comments

Comments
 (0)