diff --git a/CHANGES.md b/CHANGES.md index 0058d8c..20f8c1c 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,4 +1,5 @@ ### RQ 1.11 (2022-07-31) +* This will be the last RQ version that supports Python 3.5. * Allow jobs to be enqueued even when their dependencies fail via `Dependency(allow_failure=True)`. Thanks @mattchan-tencent, @caffeinatedMike and @selwin! * When stopped jobs are deleted, they should also be removed from FailedJobRegistry. Thanks @selwin! * `job.requeue()` now supports `at_front()` argument. Thanks @buroa! diff --git a/rq/version.py b/rq/version.py index 21f747b..c1e4aa0 100644 --- a/rq/version.py +++ b/rq/version.py @@ -1 +1 @@ -VERSION = '1.10.1' +VERSION = '1.11.0'