From a5596caf4244b37713baf7f43ea2fcb66279af47 Mon Sep 17 00:00:00 2001 From: Selwin Ong Date: Fri, 1 Jun 2018 11:22:09 +0700 Subject: [PATCH] Bump version to 0.11.0 --- CHANGES.md | 7 +++++++ rq/version.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index c7cd419..a6ec4fc 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,10 @@ +### 0.11.0 +- `Worker` now periodically sends heartbeats and checks whether child process is still alive while performing long running jobs. Thanks @Kriechi! +- `Job.create` now accepts `timeout` in string format (e.g `1h`). Thanks @theodesp! +- `worker.main_work_horse()` should exit with return code `0` even if job execution fails. Thanks @selwin! +- `job.delete(delete_dependents=True)` will delete job along with its dependents. Thanks @olingerc! +- Other minor fixes and documentation updates. + ### 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)`. diff --git a/rq/version.py b/rq/version.py index e67faaa..d4dfcf8 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.10.0' +VERSION = '0.11.0'