From 85f61870e4f5d871d52b941e2e665c14d48408de Mon Sep 17 00:00:00 2001 From: Charles Leifer Date: Fri, 7 Jun 2024 16:58:57 -0500 Subject: [PATCH] 2.5.1 --- CHANGELOG.md | 14 +++++++++++++- huey/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 717d5904..cb39e2a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,19 @@ Changelog ## master -[View commits](https://github.com/coleifer/huey/compare/2.5.0...HEAD) +[View commits](https://github.com/coleifer/huey/compare/2.5.1...HEAD) + +## 2.5.1 + +* More makework thanks to the ass-clowns running Python. Fix issue with + deprecation of `datetime.utcnow()` in 3.12. +* Add API for customizing the `TaskWrapper` implementation, suitably named + `get_task_wrapper_class()`. +* Make the `revoke_all()`, `restore_all()` and `is_revoked()` more robust for + various input types. +* Fix bug that could occur in the event of a SIGHUP followed by a SIGINT when + using thread workers. +* Added new experimental contrib module for SQS queue and S3 result storage. ## 2.5.0 diff --git a/huey/__init__.py b/huey/__init__.py index b5145156..2813bc3f 100644 --- a/huey/__init__.py +++ b/huey/__init__.py @@ -1,6 +1,6 @@ __author__ = 'Charles Leifer' __license__ = 'MIT' -__version__ = '2.5.0' +__version__ = '2.5.1' from huey.api import BlackHoleHuey from huey.api import Huey diff --git a/setup.py b/setup.py index 75986317..96f047eb 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', - #'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.12', #'Programming Language :: Python :: 3.13', 'Topic :: Software Development :: Libraries :: Python Modules', ],