From 505eb8d537118c3eaa3caaff5c880a64d21eb090 Mon Sep 17 00:00:00 2001 From: Stan <1939656+GDay@users.noreply.github.com> Date: Tue, 15 Oct 2024 04:17:28 +0200 Subject: [PATCH] Release v1.7.3 --- CHANGELOG.md | 9 +++++++++ django_q/__init__.py | 2 +- docs/conf.py | 2 +- pyproject.toml | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e384e8..c3c7667 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [v1.7.3](https://github.com/django-q2/django-q2/tree/v1.7.3) (2024-10-15) + +- Catch missing SEGALRM with AttributeError instead of ValueError https://github.com/django-q2/django-q2/pull/223 +- Refactor timeout handling to handle AttributeError and ValueError for Windows users https://github.com/django-q2/django-q2/pull/234 +- Fix type check for args in scheduler.py E721 https://github.com/django-q2/django-q2/pull/233 +- Only trigger prometheus if configured https://github.com/django-q2/django-q2/pull/231 +- Fix missing ack_id when finishing task https://github.com/django-q2/django-q2/pull/224 + + ## [v1.7.2](https://github.com/django-q2/django-q2/tree/v1.7.2) (2024-09-09) - Fix twine check diff --git a/django_q/__init__.py b/django_q/__init__.py index f47c16f..e55922c 100644 --- a/django_q/__init__.py +++ b/django_q/__init__.py @@ -1,6 +1,6 @@ import django -VERSION = (1, 7, 2) +VERSION = (1, 7, 3) if django.VERSION < (3, 2): default_app_config = "django_q.apps.DjangoQConfig" diff --git a/docs/conf.py b/docs/conf.py index e04c2b4..4d9e98b 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.7" # The full version, including alpha/beta/rc tags. -release = "1.7.2" +release = "1.7.3" # 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 c62cd63..4e2855f 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.2" +version = "1.7.3" packages = [ { include = "django_q" }, ]