Skip to content

Commit

Permalink
2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
coleifer committed Aug 10, 2020
1 parent 4c455e2 commit 00662ff
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,19 @@ Changelog

## master

[View commits](https://github.com/coleifer/huey/compare/2.2.0...HEAD)
[View commits](https://github.com/coleifer/huey/compare/2.3.0...HEAD)

## 2.3.0

* Use monotonic clock for timing operations within the consumer.
* Ensure internal state is cleaned up on file-lock when released.
* Support passing around TaskException as a pickled value.
* Set the multiprocessing mode to "fork" on MacOS and Python 3.8 or newer.
* Added option to enforce FIFO behavior when using Sqlite as storage.
* Added the `on_shutdown` handler to djhuey namespace.
* Ensure exception is set on AsyncResult in mini-huey.

[View commits](https://github.com/coleifer/huey/compare/2.2.0...2.3.0)

## 2.2.0

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.2.0'
__version__ = '2.3.0'

from huey.api import BlackHoleHuey
from huey.api import Huey
Expand Down

0 comments on commit 00662ff

Please sign in to comment.