From 98c200d07ab23e31843284507b7004e45b5b5b46 Mon Sep 17 00:00:00 2001 From: Selwin Ong Date: Sun, 31 Jul 2022 17:00:37 +0700 Subject: [PATCH] Bump version to 1.11.0 --- CHANGES.md | 1 + rq/version.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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'