From 4011186c35e80e450d8d2a9eb494a65e0e77f6ca Mon Sep 17 00:00:00 2001 From: Selwin Ong Date: Wed, 24 May 2023 06:35:03 +0700 Subject: [PATCH] Bump version to v1.15 --- CHANGES.md | 8 ++++++++ rq/version.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index a81e6bf..1d4778d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,11 @@ +### RQ 1.15 (2023-05-24) +* Added `Callback(on_stopped='my_callback)`. Thanks @eswolinsky3241! +* `queue.enqueue_many()` now supports job dependencies. Thanks @eswolinsky3241! +* `rq worker` CLI script now configures logging based on `DICT_CONFIG` key present in config file. Thanks @juur! +* Whenever possible, `Worker` now uses `lmove()` to implement [reliable queue pattern](https://redis.io/commands/lmove/). Thanks @selwin! +* `Scheduler` should only release locks that it successfully acquires. Thanks @xzander! +* Fixes crashes that may happen by changes to `as_text()` function in v1.14. Thanks @tchapi! + ### RQ 1.14.1 (2023-05-05) * Fixes a crash that happens if Redis connection uses SSL. Thanks @tchapi! * Fixes a crash if `job.meta()` is loaded using the wrong serializer. Thanks @gabriels1234! diff --git a/rq/version.py b/rq/version.py index 2d30b8b..4fda84c 100644 --- a/rq/version.py +++ b/rq/version.py @@ -1 +1 @@ -VERSION = '1.14.1' +VERSION = '1.15.0'