summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSelwin Ong <selwin.ong@gmail.com>2017-10-28 17:37:26 +0700
committerSelwin Ong <selwin.ong@gmail.com>2017-10-28 17:37:26 +0700
commit3c98175a4a2ddd763e4200715cc9655613d1423a (patch)
tree0f061e35cbe0d542c701bb7a004dd415a08929f8
parent32747b59fafc821689fcbaf8419b63d694e0e125 (diff)
downloadrq-3c98175a4a2ddd763e4200715cc9655613d1423a.tar.gz
Bump version to 0.9.0
-rw-r--r--CHANGES.md9
-rw-r--r--rq/version.py2
2 files changed, 10 insertions, 1 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 6a36e37..b46236e 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,3 +1,12 @@
+### 0.9.0
+- `Worker` statistics! `Worker` now keeps track of `last_heartbeat`, `successful_job_count`, `failed_job_count` and `total_working_time`. Thanks @selwin!
+- `Worker` now sends heartbeat during suspension check. Thanks @theodesp!
+- Added `queue.delete()` method to delete `Queue` objects entirely from Redis. Thanks @theodesp!
+- More robust exception string decoding. Thanks @stylight!
+- Added `--logging-level` option to command line scripts. Thanks @jiajunhuang!
+- Added millisecond precision to job timestamps. Thanks @samuelcolvin!
+- Python 2.6 is no longer supported. Thanks @samuelcolvin!
+
### 0.8.2
- Fixed an issue where `job.save()` may fail with unpickleable return value.
diff --git a/rq/version.py b/rq/version.py
index eb80bc6..1a9b51b 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.8.2'
+VERSION = '0.9.0'