From f18a951eecaf5e66d4429df5322019a99135e83c Mon Sep 17 00:00:00 2001 From: Selwin Ong Date: Fri, 31 Jan 2020 21:43:00 +0700 Subject: [PATCH] Bump version to 1.2.2 --- CHANGES.md | 3 +++ rq/version.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index add92e9..14adcde 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,6 @@ +### RQ 1.2.2 (2020-01-31) +* `Job.fetch()` now properly handles unpickleable return values. Thanks @selwin! + ### RQ 1.2.1 (2020-01-31) * `enqueue_at()` and `enqueue_in()` now sets job status to `scheduled`. Thanks @coolhacker170597! * Failed jobs data are now automatically expired by Redis. Thanks @selwin! diff --git a/rq/version.py b/rq/version.py index c866773..9909ebb 100644 --- a/rq/version.py +++ b/rq/version.py @@ -2,4 +2,4 @@ from __future__ import (absolute_import, division, print_function, unicode_literals) -VERSION = '1.2.1' +VERSION = '1.2.2'