diff --git a/CHANGES.md b/CHANGES.md index a8f0d241..0fe4198f 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,7 @@ +### RQ 1.15.1 (2023-06-20) +* Fixed a bug that may cause a crash when cleaning intermediate queue. Thanks @selwin! +* Fixed a bug that may cause canceled jobs to still run dependent jobs. Thanks @fredsod! + ### RQ 1.15 (2023-05-24) * Added `Callback(on_stopped='my_callback)`. Thanks @eswolinsky3241! * `Callback` now accepts dotted path to function as input. Thanks @rishabh-ranjan! diff --git a/rq/version.py b/rq/version.py index 4fda84c8..3e4fa760 100644 --- a/rq/version.py +++ b/rq/version.py @@ -1 +1 @@ -VERSION = '1.15.0' +VERSION = '1.15.1'