diff --git a/CHANGELOG.md b/CHANGELOG.md index 4dd8e3a8..91f3f719 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/huey/__init__.py b/huey/__init__.py index f3fb64bb..9a837fc1 100644 --- a/huey/__init__.py +++ b/huey/__init__.py @@ -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