summaryrefslogtreecommitdiff
path: root/CHANGES.md
diff options
context:
space:
mode:
authorSelwin Ong <selwin.ong@gmail.com>2020-03-09 19:28:30 +0700
committerSelwin Ong <selwin.ong@gmail.com>2020-03-09 19:28:30 +0700
commitadd0b171ec71f369545b6204c733b6b2175db738 (patch)
tree917d75fa06f052e509861a100b1cbf2eb5b69cfe /CHANGES.md
parent403647120348f3216fc423e70c7045cf3ebef752 (diff)
downloadrq-add0b171ec71f369545b6204c733b6b2175db738.tar.gz
Bump version to 1.3.0v1.3.0
Diffstat (limited to 'CHANGES.md')
-rw-r--r--CHANGES.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 14adcde..5b71d17 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,3 +1,10 @@
+### RQ 1.3.0 (2020-03-09)
+* Support for infinite job timeout. Thanks @theY4Kman!
+* Added `__main__` file so you can now do `python -m rq.cli`. Thanks @bbayles!
+* Fixes an issue that may cause zombie processes. Thanks @wevsty!
+* `job_id` is now passed to logger during failed jobs. Thanks @smaccona!
+* `queue.enqueue_at()` and `queue.enqueue_in()` now supports explicit `args` and `kwargs` function invocation. Thanks @selwin!
+
### RQ 1.2.2 (2020-01-31)
* `Job.fetch()` now properly handles unpickleable return values. Thanks @selwin!