From b6dda0ec36c75910d1be3e242dfbf211866f85d6 Mon Sep 17 00:00:00 2001 From: Samuel Colvin Date: Fri, 2 Dec 2022 13:13:39 +0000 Subject: [PATCH] uprev, prepare for release --- HISTORY.rst | 12 ++++++++++++ arq/version.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index c5861669..56e6e143 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,18 @@ History ------- +v0.25 (2022-12-02) +.................. + +* Allow to opt-out from logging results by @iamlikeme in #352 +* Add timezone support for cron jobs by @iamlikeme in #354 +* connections: fix pipeline usage for exists command by @utkarshgupta137 in #366 +* Fix race condition causing incorrect status not found by @iamlikeme in #362 +* Adds ``after_job_end`` hook by @AngellusMortis in #355 +* Raise ``ResultNotFound`` when ``Job.result()`` finds no job and no result by @iamlikeme in #364 +* use ``3.11`` for testing #367 +* Signal handler to wait for task completion before shutting down by @JonasKs in #345 + v0.24 (2022-09-05) .................. diff --git a/arq/version.py b/arq/version.py index 46b209c0..a5f885c9 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.25.0-dev' +VERSION = '0.25.0'