From ff34e3a4850729fa0ef5bd133cba847aafd0a8bb Mon Sep 17 00:00:00 2001 From: Demian Brecht Date: Wed, 10 Dec 2025 12:57:41 -0800 Subject: [PATCH 1/4] move upper and lower bounds of django versions to match current LTS versions --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 1cde7b5..b32519d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ version = "0.34.1" # set by bumpversion description = "Simple, readable, declarative APIs for Django" readme = "README.md" dependencies = [ - "Django >=3.2, <5", + "Django >=4.2, <6", "celery>=4.0.2,!=4.1.0", "cryptography>=2.0", "decorator==4.0.11", From 2cb7a6266f5b9c0d208f939cc3e57137ef19f963 Mon Sep 17 00:00:00 2001 From: Demian Brecht Date: Wed, 10 Dec 2025 15:56:33 -0800 Subject: [PATCH 2/4] add django 5.2 to the test matrix --- .github/workflows/tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 82e5a2f..01a5450 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,6 +9,7 @@ jobs: strategy: matrix: python-version: ['3.11', '3.12'] + django: ['4.2', '5.2'] steps: - uses: actions/checkout@v4 From 5c2ecbfdccbc9a971ac59861a79fa14cea1c1402 Mon Sep 17 00:00:00 2001 From: Demian Brecht Date: Wed, 10 Dec 2025 15:57:32 -0800 Subject: [PATCH 3/4] bumped version --- .bumpversion.cfg | 2 +- docs/source/conf.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 6fcd7aa..cf2fb46 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.34.1 +current_version = 0.34.2 [bumpversion:file:pyproject.toml] diff --git a/docs/source/conf.py b/docs/source/conf.py index 85a212a..e1f72fa 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -75,7 +75,7 @@ # built documents. # The full version, including alpha/beta/rc tags. -release = "0.34.1" # set by bumpversion +release = "0.34.2" # set by bumpversion # The short X.Y version. version = release.rsplit(".", 1)[0] diff --git a/pyproject.toml b/pyproject.toml index b32519d..b2019e7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "django-declarative-apis" -version = "0.34.1" # set by bumpversion +version = "0.34.2" # set by bumpversion description = "Simple, readable, declarative APIs for Django" readme = "README.md" dependencies = [ From 2c7c4fbe8f9fa40f17c50f09d29554599bc9bddd Mon Sep 17 00:00:00 2001 From: Demian Brecht Date: Wed, 10 Dec 2025 15:58:37 -0800 Subject: [PATCH 4/4] changelog entry --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ed2835..d64a191 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # [Unreleased] +# [0.34.2] +- [PR 184](https://github.com/salesforce/django-declarative-apis/pull/184) Add support for Django 5.x + # [0.34.1] - [PR 179](https://github.com/salesforce/django-declarative-apis/pull/179) Move the 204 response handling fix to resources.