From d11f6e2dcecb2429ee12a51fc17f6e751b7e4b16 Mon Sep 17 00:00:00 2001 From: Charles Leifer Date: Fri, 21 Oct 2022 15:51:03 -0500 Subject: [PATCH] 2.4.4 --- CHANGELOG.md | 12 +++++++++++- huey/__init__.py | 2 +- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 77b70b8d..1d6bc106 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,17 @@ Changelog ## master -[View commits](https://github.com/coleifer/huey/compare/2.4.3...HEAD) +[View commits](https://github.com/coleifer/huey/compare/2.4.4...HEAD) + +## 2.4.4 + +* Add `is_locked(lock_name)` to test whether lock is held. +* Allow raising `CancelExecution` within a Task, and override `retries`. +* Add a very basic redis-backed lock that can be acquired more than once (to + provide a rudimentary semaphore). +* Add a `periodic_task()` wrapper for `MiniHuey` class. + +[View commits](https://github.com/coleifer/huey/compare/2.4.3...2.4.4) ## 2.4.3 diff --git a/huey/__init__.py b/huey/__init__.py index a2d908c9..8fba06bd 100644 --- a/huey/__init__.py +++ b/huey/__init__.py @@ -1,6 +1,6 @@ __author__ = 'Charles Leifer' __license__ = 'MIT' -__version__ = '2.4.3' +__version__ = '2.4.4' from huey.api import BlackHoleHuey from huey.api import Huey