Skip to content

Commit f86ea1f

Browse files
committed
3.0.0
1 parent 1cce576 commit f86ea1f

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ Changelog
33

44
## master
55

6+
[View commits](https://github.com/coleifer/huey/compare/3.0.0...HEAD)
7+
8+
## 3.0.0
9+
610
* Add `chord()` (map -> reduce) and `group()` (map) primitives.
711
* Add `timeout` (using SIGALRM for process and gevent.Timeout for greenlet) to
812
control task running time. For threads, unfortunately, there's no good
@@ -21,7 +25,7 @@ Changelog
2125
provides a mechanism for pub/sub or other notification of result readiness.
2226
* Remove Python 2.x compatibility.
2327

24-
[View commits](https://github.com/coleifer/huey/compare/2.6.0...HEAD)
28+
[View commits](https://github.com/coleifer/huey/compare/2.6.0...3.0.0)
2529

2630
## 2.6.0
2731

huey/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__author__ = 'Charles Leifer'
22
__license__ = 'MIT'
3-
__version__ = '2.6.0'
3+
__version__ = '3.0.0'
44

55
from huey.api import BlackHoleHuey
66
from huey.api import Huey

0 commit comments

Comments
 (0)