From 995492878df5f6b7a32614a6050af0f3a4033e2c Mon Sep 17 00:00:00 2001 From: Selwin Ong Date: Thu, 4 Jan 2018 19:24:16 +0700 Subject: [PATCH 1/3] Added v0.10.0 release notes.; --- CHANGES.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index 75768f61..c7cd419c 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! From 17df38badb549e9e231df25e98636cc9bcf65e40 Mon Sep 17 00:00:00 2001 From: Selwin Ong Date: Thu, 4 Jan 2018 20:52:58 +0700 Subject: [PATCH 2/3] Remove caniusepython3 badge --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 2a040c78..c5002076 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,6 @@ RQ requires Redis >= 2.7.0. [![Build status](https://travis-ci.org/nvie/rq.svg?branch=master)](https://secure.travis-ci.org/nvie/rq) [![PyPI](https://img.shields.io/pypi/pyversions/rq.svg)](https://pypi.python.org/pypi/rq) -[![Can I Use Python 3?](https://caniusepython3.com/project/rq.svg)](https://caniusepython3.com/project/rq) [![Coverage Status](https://img.shields.io/coveralls/nvie/rq.svg)](https://coveralls.io/r/nvie/rq) Full documentation can be found [here][d]. From e0cca18d31d5fa2f441963247258a88cff14b6ab Mon Sep 17 00:00:00 2001 From: Vincent Driessen Date: Thu, 4 Jan 2018 17:08:49 +0100 Subject: [PATCH 3/3] Test