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'