From 66f0ac2635d16c6f73034b3a8bdd4f329e312ce8 Mon Sep 17 00:00:00 2001 From: Chris Guidry Date: Mon, 6 Jan 2025 09:35:53 -0500 Subject: [PATCH] Prepare for 0.26.3 --- HISTORY.rst | 7 +++++++ arq/version.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index ba4f4b17..0e2f945f 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,13 @@ History ------- +v0.26.3 (2025-01-06) +.................... + +* Fix negative expires_ms and avoid worker freezing while using cron by @Matvey-Kuk in #479 +* Fix race condition on task retry by @RB387 in #487 + + v0.26.1 (2023-08-29) .................... diff --git a/arq/version.py b/arq/version.py index 521d0144..31ed92e3 100644 --- a/arq/version.py +++ b/arq/version.py @@ -1,2 +1,2 @@ # Version here is used for the package version via the `[tool.hatch.version]` section of `pyproject.toml`. -VERSION = '0.26.1' +VERSION = '0.26.3'