mirror of https://github.com/rq/rq.git
Bump version to 0.8.2.
This commit is contained in:
parent
50e107a5a4
commit
cc41bdfa65
|
@ -1,3 +1,6 @@
|
|||
### 0.8.2
|
||||
- Fixed an issue where `job.save()` may fail with unpickleable return value.
|
||||
|
||||
### 0.8.1
|
||||
|
||||
- Replace `job.id` with `Job` instance in local `_job_stack `. Thanks @katichev!
|
||||
|
@ -8,7 +11,6 @@
|
|||
- RQ cli commands now accept `--path` parameter. Thanks @kirill and @sjtbham!
|
||||
- Make `job.dependency` slightly more efficient. Thanks @liangsijian!
|
||||
- `FailedQueue` now returns jobs with the correct class. Thanks @amjith!
|
||||
- Fixed an issue where `job.save()` may fail with unpickleable return value.
|
||||
|
||||
### 0.8.0
|
||||
|
||||
|
|
|
@ -2,4 +2,4 @@
|
|||
from __future__ import (absolute_import, division, print_function,
|
||||
unicode_literals)
|
||||
|
||||
VERSION = '0.8.1'
|
||||
VERSION = '0.8.2'
|
||||
|
|
Loading…
Reference in New Issue