Skip to content

Commit 5e94454

Browse files
committed
Bump version to 3.0.1
1 parent baf0a19 commit 5e94454

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
### Version 3.0.1 (2025-04-28)
2+
* Temporarily disable `object-tools` block from job detail view. Thanks @terencehonles!
3+
* Fixed a typo in `setup.py`. Thanks @terencehonles!
4+
* Added support for RQ >= 2.2. Thanks @terencehonles!
5+
* Properly handle cases where no `HOST` is specified in Redis config. Thanks @spapas!
6+
17
### Version 3.0 (2024-10-28)
28
* Added support for RQ 2.0. Thanks @selwin!
39
* Many typing improvements. Thanks @SpecLad and @terencehonles!
@@ -41,10 +47,10 @@
4147
### Version 2.6.0 (2022-11-05)
4248
* Added `--max-jobs` argument to `rqworker` management command. Thanks @arpit-goel!
4349
* Remove job from `ScheduledJobRegistry` if a scheduled job is enqueued from admin. Thanks @robertaistleitner!
44-
* Minor code cleanup. Thanks @reybog90!
50+
* Minor code cleanup. Thanks @reybog90!
4551

4652
### Version 2.5.1 (2021-11-22)
47-
* `Redis.from_url` does not accept `ssl_cert_reqs` argument for non SSL Redis URL. Thanks @barash-asenov!
53+
* `Redis.from_url` does not accept `ssl_cert_reqs` argument for non SSL Redis URL. Thanks @barash-asenov!
4854

4955
### Version 2.5.0 (2021-11-17)
5056
* Better integration with Django admin, along with a new `Access admin page` permission that you can selectively grant to users. Thanks @haakenlid!

django_rq/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = (3, 0, 0)
1+
VERSION = (3, 0, 1)
22

33
from .decorators import job
44
from .queues import enqueue, get_connection, get_queue, get_scheduler

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
setup(
55
name='django-rq',
6-
version='3.0.0',
6+
version='3.0.1',
77
author='Selwin Ong',
88
author_email='[email protected]',
99
packages=['django_rq'],

0 commit comments

Comments
 (0)