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'