summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSelwin Ong <selwin.ong@gmail.com>2022-09-25 08:44:51 +0700
committerSelwin Ong <selwin.ong@gmail.com>2022-09-25 08:44:51 +0700
commit80c0edc2326a727671c5dfc7310b4017cbbc5e99 (patch)
treef18110351ac20552683aa67d973b4b0ed72b74af
parent840438559261fd64b07d1bce489d352e6d553da5 (diff)
downloadrq-1.11.1.tar.gz
Bump version to 1.11.1v1.11.1
-rw-r--r--CHANGES.md8
-rw-r--r--rq/version.py2
2 files changed, 9 insertions, 1 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 20f8c1c..8980e7a 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,3 +1,11 @@
+### RQ 1.11.1 (2022-09-25)
+* `queue.enqueue_many()` now supports `on_success` and on `on_failure` arguments. Thanks @y4n9squared!
+* You can now pass `enqueue_at_front` to `Dependency()` objects to put dependent jobs at the front when they are enqueued. Thanks @jtfidje!
+* Fixed a bug where workers may wrongly acquire scheduler locks. Thanks @milesjwinter!
+* Jobs should not be enqueued if any one of it's dependencies is canceled. Thanks @selwin!
+* Fixed a bug when handling jobs that have been stopped. Thanks @ronlut!
+* Fixed a bug in handling Redis connections that don't allow `SETNAME` command. Thanks @yilmaz-burak!
+
### 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!
diff --git a/rq/version.py b/rq/version.py
index c1e4aa0..f53f4a1 100644
--- a/rq/version.py
+++ b/rq/version.py
@@ -1 +1 @@
-VERSION = '1.11.0'
+VERSION = '1.11.1'