Skip to content

Commit

Permalink
2.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
coleifer committed Jun 7, 2024
1 parent fc6dfa0 commit 85f6187
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 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.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

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.5.0'
__version__ = '2.5.1'

from huey.api import BlackHoleHuey
from huey.api import Huey
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
],
Expand Down

0 comments on commit 85f6187

Please sign in to comment.