From ca0d7ef9f17329f37cbbdd658b8c1d823ca02640 Mon Sep 17 00:00:00 2001 From: Selwin Ong Date: Tue, 2 Jan 2018 12:59:02 +0700 Subject: [PATCH] Bump version to 0.10.0 --- CHANGES.md | 6 ++++++ rq/version.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 75768f6..c7cd419 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,9 @@ +### 0.10.0 +- `@job` decorator now accepts `description`, `meta`, `at_front` and `depends_on` kwargs. Thanks @jlucas91 and @nlyubchich! +- Added the capability to fetch workers by queue using `Worker.all(queue=queue)` and `Worker.count(queue=queue)`. +- Improved RQ's default logging configuration. Thanks @samuelcolvin! +- `job.data` and `job.exc_info` are now stored in compressed format in Redis. + ### 0.9.2 - Fixed an issue where `worker.refresh()` may fail when `birth_date` is not set. Thanks @vanife! diff --git a/rq/version.py b/rq/version.py index e6a7c9b..e67faaa 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.2' +VERSION = '0.10.0'