Skip to content

Commit

Permalink
2.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
coleifer committed Oct 21, 2022
1 parent 0190344 commit d11f6e2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion huey/__init__.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit d11f6e2

Please sign in to comment.