From 5e70e523d3d75e94eec97301f145bd093ae38e4e Mon Sep 17 00:00:00 2001 From: Selwin Ong Date: Mon, 1 May 2023 17:54:20 +0700 Subject: [PATCH] Bump version to 0.14.0 --- CHANGES.md | 2 +- rq/version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 1902571..45e3838 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,4 +1,5 @@ ### RQ 1.14.0 (2023-05-01) +* Added `WorkerPool` (beta) that manages multiple workers in a single CLI. Thanks @selwin! * Added a new `Callback` class that allows more flexibility in declaring job callbacks. Thanks @ronlut! * Fixed a regression where jobs with unserializable return value crashes RQ. Thanks @tchapi! * Added `--dequeue-strategy` option to RQ's CLI. Thanks @ccrvlh! @@ -8,7 +9,6 @@ * Show more info on `rq info` CLI command. Thanks @iggeehu! * `queue.enqueue_jobs()` now properly account for job dependencies. Thanks @sim6! * `TimerDeathPenalty` now properly handles negative/infinite timeout. Thanks @marqueurs404! -* ### RQ 1.13.0 (2023-02-19) * Added `work_horse_killed_handler` argument to `Worker`. Thanks @ronlut! diff --git a/rq/version.py b/rq/version.py index 9fb1be8..aa2d19c 100644 --- a/rq/version.py +++ b/rq/version.py @@ -1 +1 @@ -VERSION = '1.13.0' +VERSION = '1.14.0'