diff --git a/CHANGES.md b/CHANGES.md index 9223c214..6a36e372 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -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 diff --git a/rq/version.py b/rq/version.py index 396d9c33..eb80bc64 100644 --- a/rq/version.py +++ b/rq/version.py @@ -2,4 +2,4 @@ from __future__ import (absolute_import, division, print_function, unicode_literals) -VERSION = '0.8.1' +VERSION = '0.8.2'