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/.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 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. 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 1cde7b5..b2019e7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,11 +4,11 @@ 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 = [ - "Django >=3.2, <5", + "Django >=4.2, <6", "celery>=4.0.2,!=4.1.0", "cryptography>=2.0", "decorator==4.0.11",