From 97caa841fffc030f53dcfcfdb0a1e1aef5cbafa9 Mon Sep 17 00:00:00 2001 From: Selwin Ong Date: Tue, 7 Dec 2021 19:45:48 +0700 Subject: [PATCH] Bump version to 1.10.1 --- CHANGES.md | 8 ++++++++ rq/version.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 5e5b955..4409b0f 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,11 @@ +### RQ 1.10.1 (2021-12-07) +* Failure callbacks are now properly called when job is run synchronously. Thanks @ericman93! +* Fixes a bug that could cause job keys to be left over when `result_ttl=0`. Thanks @selwin! +* Allow `ssl_cert_reqs` argument to be passed to Redis. Thanks @mgcdanny! +* Better compatibility with Python 3.10. Thanks @rpkak! +* `job.cancel()` should also remove itself from registries. Thanks @joshcoden! +* Pubsub threads are now launched in `daemon` mode. Thanks @mik3y! + ### RQ 1.10.0 (2021-09-09) * You can now enqueue jobs from CLI. Docs [here](https://python-rq.org/docs/#cli-enqueueing). Thanks @rpkak! * Added a new `CanceledJobRegistry` to keep track of canceled jobs. Thanks @selwin! diff --git a/rq/version.py b/rq/version.py index c84189e..4c7666c 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.10.2' +VERSION = '1.10.1'