diff --git a/HISTORY.rst b/HISTORY.rst index 2286882c..be3cb434 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,19 @@ History ------- +v0.20 (2021-04-26) +.................. + +* Added ``queue_name`` attribute to ``JobResult``, #198 +* set ``job_deserializer``, ``job_serializer`` and ``default_queue_name`` on worker pools to better supported + nested jobs, #203, #215 and #218 +* All job results to be kept indefinitely, #205 +* refactor ``cron`` jobs to prevent duplicate jobs, #200 +* correctly handle ``CancelledError`` in python 3.8+, #213 +* allow jobs to be aborted, #212 +* depreciate ``pole_delay`` and use correct spelling ``poll_delay``, #242 +* docs improvements, #207 and #232 + v0.19.1 (2020-10-26) .................... diff --git a/arq/version.py b/arq/version.py index 4c97230e..3fbe4144 100644 --- a/arq/version.py +++ b/arq/version.py @@ -1,3 +1,3 @@ __all__ = ('VERSION',) -VERSION = '0.19.1' +VERSION = '0.20'