Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.34.1
current_version = 0.34.2

[bumpversion:file:pyproject.toml]

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ jobs:
strategy:
matrix:
python-version: ['3.11', '3.12']
django: ['4.2', '5.2']
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

python 3.13 could be added at this point.


steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down