diff --git a/CHANGELOG.md b/CHANGELOG.md index f7dca723..bf57a9c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# Version 2.5.2 (2022-11-05) +* Added `--max-jobs` argument to `rqworker` management command. Thanks @arpit-goel! +* Remove job from `ScheduledJobRegistry` if a scheduled job is enqueued from admin. Thanks @robertaistleitner! +* Minor code cleanup. Thanks @reybog90! + # Version 2.5.1 (2021-11-22) * `Redis.from_url` does not accept `ssl_cert_reqs` argument for non SSL Redis URL. Thanks @barash-asenov! diff --git a/django_rq/__init__.py b/django_rq/__init__.py index 20a79584..a29e584f 100644 --- a/django_rq/__init__.py +++ b/django_rq/__init__.py @@ -1,4 +1,4 @@ -VERSION = (2, 5, 1) +VERSION = (2, 6, 0) from .decorators import job from .queues import enqueue, get_connection, get_queue, get_scheduler diff --git a/setup.py b/setup.py index f07b73dd..9d080a26 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name='django-rq', - version='2.5.1', + version='2.6.0', author='Selwin Ong', author_email='selwin.ong@gmail.com', packages=['django_rq'],