From d05fbf6f3e86dd6424d288c4bd8d1b1c18f6fc2e Mon Sep 17 00:00:00 2001 From: Selwin Ong Date: Wed, 17 Nov 2021 08:07:55 +0700 Subject: [PATCH] Bump version to 2.5.0 --- CHANGELOG.md | 8 ++++++++ django_rq/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 718aec57..65c39cf9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# Version 2.5.0 (2021-03-31) +* Better integration with Django admin, along with a new `Access admin page` permission that you can selectively grant to users. Thanks @haakenlid! +* Worker count is now updated everytime you view workers for that specific queue. Thanks @cgl! +* Add the capability to pass arbitrary Redis client kwargs. Thanks @juanjgarcia! +* Always escape text when rendering job arguments. Thanks @rhenanbartels! +* Add `@never_cache` decorator to all Django-RQ views. Thanks @Cybernisk! +* `SSL_CERT_REQS` argument should also be passed to Redis client even when Redis URL is used. Thanks @paltman! + # Version 2.4.1 (2021-03-31) * Added `ssl_cert_reqs` and `username` to queue config. Thanks @jeyang! diff --git a/django_rq/__init__.py b/django_rq/__init__.py index 2581c611..763840ca 100644 --- a/django_rq/__init__.py +++ b/django_rq/__init__.py @@ -1,4 +1,4 @@ -VERSION = (2, 4, 1) +VERSION = (2, 5, 0) from .decorators import job from .queues import enqueue, get_connection, get_queue, get_scheduler diff --git a/setup.py b/setup.py index 863cdbdd..17b8b3ae 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name='django-rq', - version='2.4.1', + version='2.5.0', author='Selwin Ong', author_email='selwin.ong@gmail.com', packages=['django_rq'],