Bump version to 1.5.2

main
Selwin Ong 4 years ago
parent 01d71c8984
commit e6f153ee86

@ -1,3 +1,8 @@
### RQ 1.5.2 (2020-09-10)
* Scheduler now uses the class of connection that's used. Thanks @pacahon!
* Fixes a bug that puts retried jobs in `FailedJobRegistry`. Thanks @selwin!
* Fixed a deprecated import. Thanks @elmaghallawy!
### RQ 1.5.1 (2020-08-21) ### RQ 1.5.1 (2020-08-21)
* Fixes for Redis server version parsing. Thanks @selwin! * Fixes for Redis server version parsing. Thanks @selwin!
* Retries can now be set through @job decorator. Thanks @nerok! * Retries can now be set through @job decorator. Thanks @nerok!
@ -6,7 +11,7 @@
* Better handling of exceptions thrown by horses. Thanks @theambient! * Better handling of exceptions thrown by horses. Thanks @theambient!
### RQ 1.5.0 (2020-07-26) ### RQ 1.5.0 (2020-07-26)
* Failed jobs can now be retries. Thanks @selwin! * Failed jobs can now be retried. Thanks @selwin!
* Fixed scheduler on Python > 3.8.0. Thanks @selwin! * Fixed scheduler on Python > 3.8.0. Thanks @selwin!
* RQ is now aware of which version of Redis server it's running on. Thanks @aparcar! * RQ is now aware of which version of Redis server it's running on. Thanks @aparcar!
* RQ now uses `hset()` on redis-py >= 3.5.0. Thanks @aparcar! * RQ now uses `hset()` on redis-py >= 3.5.0. Thanks @aparcar!

@ -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.5.1' VERSION = '1.5.2'

Loading…
Cancel
Save