From 65d2548e9847ae5ca39b695e07a4ea5fbdad7435 Mon Sep 17 00:00:00 2001 From: Stan <1939656+GDay@users.noreply.github.com> Date: Fri, 25 Apr 2025 16:30:51 +0200 Subject: [PATCH] Release v1.8.0 --- CHANGELOG.md | 8 ++++++++ django_q/__init__.py | 2 +- docs/conf.py | 4 ++-- pyproject.toml | 2 +- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b868515..ad48585 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [v1.8.0](https://github.com/django-q2/django-q2/tree/v1.7.6) (2025-04-25) + +- Delete deprecated imports and unwrapping https://github.com/django-q2/django-q2/pull/261 +- Remove disque from CI https://github.com/django-q2/django-q2/pull/270 +- Avoid creating task run on Scheduler creation https://github.com/django-q2/django-q2/pull/268 +- Update tested versions, add python 3.13 support and django 5.2 support. Drop python 3.8 support https://github.com/django-q2/django-q2/pull/271 +- Move timeout function from ORM broker into class to allow easy customization https://github.com/django-q2/django-q2/pull/274 + ## [v1.7.6](https://github.com/django-q2/django-q2/tree/v1.7.6) (2025-01-12) - Make poetry version fixed in CI https://github.com/django-q2/django-q2/pull/260 diff --git a/django_q/__init__.py b/django_q/__init__.py index acd676c..62c6b2b 100644 --- a/django_q/__init__.py +++ b/django_q/__init__.py @@ -1,3 +1,3 @@ -VERSION = (1, 7, 6) +VERSION = (1, 8, 0) __all__ = ["conf", "cluster", "models", "tasks"] diff --git a/docs/conf.py b/docs/conf.py index 67e1c7a..84b2054 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.7" +version = "1.8" # The full version, including alpha/beta/rc tags. -release = "1.7.6" +release = "1.8.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 ab42af4..85419bc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "django-q2" -version = "1.7.6" +version = "1.8.0" packages = [ { include = "django_q" }, ]