From ccd760a69f94d6aea2129d8c637e4b3d9843be7e Mon Sep 17 00:00:00 2001 From: Stan <1939656+GDay@users.noreply.github.com> Date: Sun, 3 Nov 2024 15:26:11 +0100 Subject: [PATCH] Release v1.7.4 --- 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 c3c7667..57626d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [v1.7.4](https://github.com/django-q2/django-q2/tree/v1.7.4) (2024-11-03) + +- Decrease the MAX_RSS set in test_cluster::test_max_rss https://github.com/django-q2/django-q2/pull/240 +- Fix BROKER_CLASS monkeypatch in test_brokers https://github.com/django-q2/django-q2/pull/239 +- Fix 'receive_message_wait_time_seconds' SQS broker management https://github.com/django-q2/django-q2/pull/243 + ## [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 diff --git a/django_q/__init__.py b/django_q/__init__.py index e55922c..b9d4b99 100644 --- a/django_q/__init__.py +++ b/django_q/__init__.py @@ -1,6 +1,6 @@ import django -VERSION = (1, 7, 3) +VERSION = (1, 7, 4) if django.VERSION < (3, 2): default_app_config = "django_q.apps.DjangoQConfig" diff --git a/docs/conf.py b/docs/conf.py index 4d9e98b..b4d34b3 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.3" +release = "1.7.4" # 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 4e2855f..e3cd6be 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.3" +version = "1.7.4" packages = [ { include = "django_q" }, ]