diff --git a/CHANGES.md b/CHANGES.md index c103cbf..add92e9 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,8 @@ +### 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! +* Fixes `RQScheduler` logging configuration. Thanks @FlorianPerucki! + ### RQ 1.2.0 (2020-01-04) * This release also contains an alpha version of RQ's builtin job scheduling mechanism. Thanks @selwin! * Various internal API changes in preparation to support multiple job dependencies. Thanks @thomasmatecki! diff --git a/rq/version.py b/rq/version.py index c9720b7..c866773 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.0' +VERSION = '1.2.1'