summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSelwin Ong <selwin.ong@gmail.com>2020-09-10 08:19:53 +0700
committerSelwin Ong <selwin.ong@gmail.com>2020-09-10 08:19:53 +0700
commite6f153ee864b0215d95c6d3fd666f30637d2cbd9 (patch)
tree0aa1a6284f94af0a66e2f490293d8930e5da4b9b
parent01d71c898495e28fa380803a4328fe5106edbc02 (diff)
downloadrq-e6f153ee864b0215d95c6d3fd666f30637d2cbd9.tar.gz
Bump version to 1.5.2v1.5.2
-rw-r--r--CHANGES.md7
-rw-r--r--rq/version.py2
2 files changed, 7 insertions, 2 deletions
diff --git a/CHANGES.md b/CHANGES.md
index c7b5f35..04e2fd3 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -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)
* Fixes for Redis server version parsing. Thanks @selwin!
* Retries can now be set through @job decorator. Thanks @nerok!
@@ -6,7 +11,7 @@
* Better handling of exceptions thrown by horses. Thanks @theambient!
### 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!
* 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!
diff --git a/rq/version.py b/rq/version.py
index 57c6533..cf66366 100644
--- a/rq/version.py
+++ b/rq/version.py
@@ -2,4 +2,4 @@
from __future__ import (absolute_import, division, print_function,
unicode_literals)
-VERSION = '1.5.1'
+VERSION = '1.5.2'