mirror of https://github.com/rq/rq.git
Bump version to 1.5.1
This commit is contained in:
parent
f0afcd3cb3
commit
20248cf268
|
@ -1,3 +1,10 @@
|
|||
### RQ 1.5.1 (2020-08-21)
|
||||
* Fixes for Redis server version parsing. Thanks @selwin!
|
||||
* Retries can now be set through @job decorator. Thanks @nerok!
|
||||
* Log messages below logging.ERROR is now sent to stdout. Thanks @selwin!
|
||||
* Better logger name for RQScheduler. Thanks @atainter!
|
||||
* Better handling of exceptions thrown by horses. Thanks @theambient!
|
||||
|
||||
### RQ 1.5.0 (2020-07-26)
|
||||
* Failed jobs can now be retries. Thanks @selwin!
|
||||
* Fixed scheduler on Python > 3.8.0. Thanks @selwin!
|
||||
|
|
|
@ -2,4 +2,4 @@
|
|||
from __future__ import (absolute_import, division, print_function,
|
||||
unicode_literals)
|
||||
|
||||
VERSION = '1.5.0'
|
||||
VERSION = '1.5.1'
|
||||
|
|
Loading…
Reference in New Issue