Skip to content

Commit

Permalink
2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
coleifer committed Aug 7, 2019
1 parent d907159 commit 47512f2
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,20 @@ Changelog

## master

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

## 2.1.1

* Ensure that `task()`-decorated functions retain their docstrings.
* Fix logger setup so that the consumer log configuration is only applied to
the `huey` namespace, rather than the root logger.
* Expose `result`, `signal` and `disconnect_signal` in the Django huey
extension.
* Add `SignedSerializer`, which signs and validates task messages.
* Refactor the `SqliteStorage` so that it can be more easily extended to
support other databases.

[View commits](https://github.com/coleifer/huey/compare/2.1.0...2.1.1)

## 2.1.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.1.0'
__version__ = '2.1.1'

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

0 comments on commit 47512f2

Please sign in to comment.