Bump version to 1.7.0

main
Selwin Ong 4 years ago
parent ab19ad9798
commit d3b07fba47

@ -1,3 +1,9 @@
### RQ 1.7.0 (2020-11-29)
* Added `job.worker_name` attribute that tells you which worker is executing a job. Thanks @selwin!
* Added `send_stop_job_command()` that tells a worker to stop executing a job. Thanks @selwin!
* Added `JSONSerializer` as an alternative to the default `pickle` based serializer. Thanks @JackBoreczky!
* Fixes `RQScheduler` running on Redis with `ssl=True`. Thanks @BobReid!
### RQ 1.6.1 (2020-11-08) ### RQ 1.6.1 (2020-11-08)
* Worker now properly releases scheduler lock when run in burst mode. Thanks @selwin! * Worker now properly releases scheduler lock when run in burst mode. Thanks @selwin!

@ -415,7 +415,7 @@ for worker in workers:
``` ```
### Stopping a Currently Executing Job ### Stopping a Job
_New in version 1.7.0._ _New in version 1.7.0._
You can use `send_stop_job_command()` to tell a worker to immediately stop a currently executing job. A job that's stopped will be sent to [FailedJobRegistry](https://python-rq.org/docs/results/#dealing-with-exceptions). You can use `send_stop_job_command()` to tell a worker to immediately stop a currently executing job. A job that's stopped will be sent to [FailedJobRegistry](https://python-rq.org/docs/results/#dealing-with-exceptions).

@ -2,4 +2,4 @@
from __future__ import (absolute_import, division, print_function, from __future__ import (absolute_import, division, print_function,
unicode_literals) unicode_literals)
VERSION = '1.6.1' VERSION = '1.7.0'

Loading…
Cancel
Save