From 5b65ff3bc9f133d8142cbc571f10f15157124e47 Mon Sep 17 00:00:00 2001 From: Charles Leifer Date: Thu, 4 Mar 2021 09:14:07 -0600 Subject: [PATCH] 2.3.1 --- CHANGELOG.md | 11 ++++++++++- huey/__init__.py | 2 +- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 91f3f719..e8f93edb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,16 @@ Changelog ## master -[View commits](https://github.com/coleifer/huey/compare/2.3.0...HEAD) +[View commits](https://github.com/coleifer/huey/compare/2.3.1...HEAD) + +## 2.3.1 + +* Add `SIGNAL_INTERRUPTED` to signal when a task is interrupted when a consumer + exits abruptly. +* Use the `Huey.create_consumer()` API within the Django management command, to + allow Django users to customize the creation of the `Consumer` instance. + +[View commits](https://github.com/coleifer/huey/compare/2.3.0...2.3.1) ## 2.3.0 diff --git a/huey/__init__.py b/huey/__init__.py index 9a837fc1..a715a410 100644 --- a/huey/__init__.py +++ b/huey/__init__.py @@ -1,6 +1,6 @@ __author__ = 'Charles Leifer' __license__ = 'MIT' -__version__ = '2.3.0' +__version__ = '2.3.1' from huey.api import BlackHoleHuey from huey.api import Huey