From 44a0a7b972285463c49468e7561e95c6f1788684 Mon Sep 17 00:00:00 2001 From: Selwin Ong Date: Tue, 21 Nov 2017 16:53:44 +0700 Subject: [PATCH] Bump version to 0.9.2. --- CHANGES.md | 5 ++++- rq/version.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 484bc20..75768f6 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,6 @@ +### 0.9.2 +- Fixed an issue where `worker.refresh()` may fail when `birth_date` is not set. Thanks @vanife! + ### 0.9.1 - Fixed an issue where `worker.refresh()` may fail when upgrading from previous versions of RQ. @@ -43,7 +46,7 @@ - Fixes a bug that prevents fetching jobs from `FailedQueue` (#765). Thanks @jsurloppe! - Fixes race condition when enqueueing jobs with dependency (#742). Thanks @th3hamm0r! - Skip a test that requires Linux signals on MacOS (#763). Thanks @jezdez! -- `enqueue_job` should use Redis pipeline when available (#761). Thanks mtdewulf! +- `enqueue_job` should use Redis pipeline when available (#761). Thanks mtdewulf! ### 0.7.0 diff --git a/rq/version.py b/rq/version.py index f0c04ac..e6a7c9b 100644 --- a/rq/version.py +++ b/rq/version.py @@ -2,4 +2,4 @@ from __future__ import (absolute_import, division, print_function, unicode_literals) -VERSION = '0.9.1' +VERSION = '0.9.2'