From 1941f1e3f0de00700a2f1df15382474e569ddc44 Mon Sep 17 00:00:00 2001 From: Stan <1939656+GDay@users.noreply.github.com> Date: Mon, 10 Aug 2026 04:17:05 +0200 Subject: [PATCH] Release v1.11.0 --- CHANGELOG.md | 10 ++++++++++ django_q/__init__.py | 2 +- docs/conf.py | 4 ++-- pyproject.toml | 4 ++-- 4 files changed, 15 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e347c3..8fc792d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [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 +- Add croniter as optional extra. (#336) https://github.com/django-q2/django-q2/pull/336 +- Migrate poetry to uv (#337) https://github.com/django-q2/django-q2/pull/337 +- Add support for python 3.13 and 3.14 (#338) https://github.com/django-q2/django-q2/pull/338 +- Add django 6.1 support (#340) https://github.com/django-q2/django-q2/pull/340 +- Postpone SECRET_KEY evaluation to the qcluster command execution (#332) https://github.com/django-q2/django-q2/pull/332 + + ## [v1.10.0](https://github.com/django-q2/django-q2/tree/v1.10.0) (2026-05-01) - fix: Fix incorrect signal import (#308) https://github.com/django-q2/django-q2/pull/308 diff --git a/django_q/__init__.py b/django_q/__init__.py index 5e1f823..91318a4 100644 --- a/django_q/__init__.py +++ b/django_q/__init__.py @@ -1,3 +1,3 @@ -VERSION = (1, 10, 0) +VERSION = (1, 11, 0) __all__ = ["conf", "cluster", "models", "tasks"] diff --git a/docs/conf.py b/docs/conf.py index dfecb4b..4ab774c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -73,9 +73,9 @@ author = "Ilan Steemers, Stan Triepels" # built documents. # # The short X.Y version. -version = "1.10" +version = "1.11" # The full version, including alpha/beta/rc tags. -release = "1.10.0" +release = "1.11.0" # 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 a7e68a8..63c9c52 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "uv_build" [project] name = "django-q2" -version = "1.10.0" +version = "1.11.0" packages = [ { include = "django_q" }, ] @@ -33,11 +33,11 @@ classifiers = [ "Operating System :: MacOS", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Topic :: Internet :: WWW/HTTP", "Topic :: System :: Distributed Computing", "Topic :: Software Development :: Libraries :: Python Modules",