diff --git a/CHANGES.md b/CHANGES.md index a6ec4fc..080ec11 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,4 +1,9 @@ -### 0.11.0 +### 0.12.0 (2018-07-14) +- Added support for Python 3.7. Since `async` is a keyword in Python 3.7, +`Queue(async=False)` has been changed to `Queue(is_async=False)`. The `async` +keyword argument will still work, but raises a `DeprecationWarning`. Thanks @dchevell! + +### 0.11.0 (2018-06-01) - `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! diff --git a/rq/version.py b/rq/version.py index d4dfcf8..ee07407 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.11.0' +VERSION = '0.12.0'