From 46d0056a6912b9a6a2459cefc93b229ffa5727d7 Mon Sep 17 00:00:00 2001 From: Selwin Ong Date: Fri, 5 May 2023 21:00:49 +0700 Subject: [PATCH] Bump version to 1.14.1 --- CHANGES.md | 4 ++++ rq/version.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 45e3838..a81e6bf 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,7 @@ +### 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! + ### 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! diff --git a/rq/version.py b/rq/version.py index aa2d19c..2d30b8b 100644 --- a/rq/version.py +++ b/rq/version.py @@ -1 +1 @@ -VERSION = '1.14.0' +VERSION = '1.14.1'