From cc41bdfa65a8482571a792916582b4097ea03066 Mon Sep 17 00:00:00 2001 From: Selwin Ong Date: Tue, 5 Sep 2017 10:57:52 +0700 Subject: [PATCH] Bump version to 0.8.2. --- CHANGES.md | 4 +++- rq/version.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) 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'