Skip to content

Commit

Permalink
Bump version to 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
selwin committed Jul 14, 2018
1 parent c2b939d commit 6a37619
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -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!
Expand Down
2 changes: 1 addition & 1 deletion rq/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
from __future__ import (absolute_import, division, print_function,
unicode_literals)

VERSION = '0.11.0'
VERSION = '0.12.0'

0 comments on commit 6a37619

Please sign in to comment.