From b0c67534627c27e38478d139fc224762f4955ba6 Mon Sep 17 00:00:00 2001 From: Stan <1939656+GDay@users.noreply.github.com> Date: Wed, 26 Aug 2026 04:46:29 +0200 Subject: [PATCH] Release v1.11.1 --- CHANGELOG.md | 6 ++++++ django_q/__init__.py | 2 +- docs/conf.py | 2 +- pyproject.toml | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8fc792d..4db9f2b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [v1.11.1](https://github.com/django-q2/django-q2/tree/v1.11.1) (2026-08-26) + +- Swap localstorage to ministack (#343) https://github.com/django-q2/django-q2/pull/343 +- Show test coverage in github pull request comment (#344) https://github.com/django-q2/django-q2/pull/344 +- Fix cluster requesting hardcoded unix-only fork context (#347) https://github.com/django-q2/django-q2/pull/347 + ## [v1.11.0](https://github.com/django-q2/django-q2/tree/v1.11.0) (2026-08-10) - AttributeError when start_event is None, and guard process faster stop (#305) https://github.com/django-q2/django-q2/pull/305 diff --git a/django_q/__init__.py b/django_q/__init__.py index 91318a4..022f191 100644 --- a/django_q/__init__.py +++ b/django_q/__init__.py @@ -1,3 +1,3 @@ -VERSION = (1, 11, 0) +VERSION = (1, 11, 1) __all__ = ["conf", "cluster", "models", "tasks"] diff --git a/docs/conf.py b/docs/conf.py index 4ab774c..334b9e3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -75,7 +75,7 @@ author = "Ilan Steemers, Stan Triepels" # The short X.Y version. version = "1.11" # The full version, including alpha/beta/rc tags. -release = "1.11.0" +release = "1.11.1" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pyproject.toml b/pyproject.toml index 63c9c52..d2de0c5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "uv_build" [project] name = "django-q2" -version = "1.11.0" +version = "1.11.1" packages = [ { include = "django_q" }, ]