diff --git a/CHANGELOG.md b/CHANGELOG.md index 2785c41..0e347c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [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 +- Add post_execute_in_worker signal (#309) https://github.com/django-q2/django-q2/pull/309 +- Fix BadSignature after the default Django cache expires (#311) https://github.com/django-q2/django-q2/pull/311 +- feat:add Simplified Chinese Translation (#314) https://github.com/django-q2/django-q2/pull/314 +- Update Django Q2 compatibility information (#316) https://github.com/django-q2/django-q2/pull/316 +- Don't close DB connection if async_task was called with sync=True (#301) https://github.com/django-q2/django-q2/pull/301 +- Convert queue size and count to string in monitor (#319) https://github.com/django-q2/django-q2/pull/319 +- Fix unbounded growth of Broker.set_stat cluster master list (#322) https://github.com/django-q2/django-q2/pull/322 +- Update Python base image to 3.9-slim-bookworm (#325) https://github.com/django-q2/django-q2/pull/325 +- feat: add ru locale and improve translations (#320) https://github.com/django-q2/django-q2/pull/320 + + ## [v1.9.0](https://github.com/django-q2/django-q2/tree/v1.9.0) (2025-12-04) - Django 6.0 support https://github.com/django-q2/django-q2/pull/307 diff --git a/django_q/__init__.py b/django_q/__init__.py index 26a827b..5e1f823 100644 --- a/django_q/__init__.py +++ b/django_q/__init__.py @@ -1,3 +1,3 @@ -VERSION = (1, 9, 0) +VERSION = (1, 10, 0) __all__ = ["conf", "cluster", "models", "tasks"] diff --git a/docs/conf.py b/docs/conf.py index f4e0fe2..dfecb4b 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.9" +version = "1.10" # The full version, including alpha/beta/rc tags. -release = "1.9.0" +release = "1.10.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 09d4bc6..9e02d4e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "django-q2" -version = "1.9.0" +version = "1.10.0" packages = [ { include = "django_q" }, ]