diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 033ef89..1684b5f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,7 +8,8 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] + python-version: ['3.10', '3.11', '3.12'] + django: ['4.2', '5.2'] steps: - uses: actions/checkout@v4 diff --git a/CHANGELOG.md b/CHANGELOG.md index f7ae135..b9c2a8c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [unreleased] - XXXX-XX-XX +## [1.0.4] - 2025-12-10 - [PR 9](https://github.com/salesforce/django-request-queue-timeout/pull/9) Update GitHub action versions - [PR 10](https://github.com/salesforce/django-request-queue-timeout/pull/10) Fix Makefile install target +- [PR 13](https://github.com/salesforce/django-request-queue-timeout/pull/13) Add Django 5.x support ## [1.0.3] - 2024-02-06 - [PR 6](https://github.com/salesforce/django-request-queue-timeout/pull/6) chore: upgrade django 4.2 LTS (@W-14178534) diff --git a/pyproject.toml b/pyproject.toml index 3462dd9..6cbd6ab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,12 +4,12 @@ build-backend = "setuptools.build_meta" [project] name = "django-request-queue-timeout" -version = "1.0.3" +version = "1.0.4" description = "Django middleware class to quickly dispatch any requests that wait too long in a queue before being processed" license = {file = "LICENSE.txt"} readme = "README.md" dependencies = [ - "django >=2.2, <5" + "django >=4.2, <6" ] keywords = [ "django",