summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSelwin Ong <selwin.ong@gmail.com>2017-07-28 15:52:48 +0700
committerSelwin Ong <selwin.ong@gmail.com>2017-07-28 15:52:48 +0700
commit03c3f66ca70830f867da5f710534a1397e2f19e7 (patch)
tree709e5dff59171257b589cce01db84f17dca38556
parent29068151c94d94f80db761fdc8bf9c4faa2833c5 (diff)
downloadrq-03c3f66ca70830f867da5f710534a1397e2f19e7.tar.gz
Bump version to 0.8.1.v0.8.1
-rw-r--r--CHANGES.md12
-rw-r--r--rq/version.py2
2 files changed, 13 insertions, 1 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 4f65711..9223c21 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,3 +1,15 @@
+### 0.8.1
+
+- Replace `job.id` with `Job` instance in local `_job_stack `. Thanks @katichev!
+- `job.save()` no longer implicitly calls `job.cleanup()`. Thanks @katichev!
+- Properly catch `StopRequested` `worker.heartbeat()`. Thanks @fate0!
+- You can now pass in timeout in days. Thanks @yaniv-g!
+- The core logic of sending job to `FailedQueue` has been moved to `rq.handlers.move_to_failed_queue`. Thanks @yaniv-g!
+- RQ cli commands now accept `--path` parameter. Thanks @kirill and @sjtbham!
+- Make `job.dependency` slightly more efficient. Thanks @liangsijian!
+- `FailedQueue` now returns jobs with the correct class. Thanks @amjith!
+- Fixed an issue where `job.save()` may fail with unpickleable return value.
+
### 0.8.0
- Refactored APIs to allow custom `Connection`, `Job`, `Worker` and `Queue` classes via CLI. Thanks @jezdez!
diff --git a/rq/version.py b/rq/version.py
index 8a903ca..396d9c3 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.0'
+VERSION = '0.8.1'