Skip to content

Commit 596e413

Browse files
committed
Bump version to 2.8.1
1 parent c7594be commit 596e413

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# Version 2.8.1 (2023-05-14)
2+
* Added a button to stop currently running jobs. Thanks @gabriels1234!
3+
* Added a failed jobs column to rqstats command. Thanks @dangquangdon!
4+
* Explicitly requires RQ >= 1.14 in `setup.py`. Thanks @selwin!
5+
16
# Version 2.8.0 (2023-05-02)
27
* Support for RQ 1.14. Thanks @Cerebro92 and @selwin!
38
* Show scheduler PID information in admin interface. Thanks @gabriels1234!

django_rq/__init__.py

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

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

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
setup(
55
name='django-rq',
6-
version='2.8.0',
6+
version='2.8.1',
77
author='Selwin Ong',
88
author_email='[email protected]',
99
packages=['django_rq'],
@@ -14,7 +14,7 @@
1414
zip_safe=False,
1515
include_package_data=True,
1616
package_data={'': ['README.rst']},
17-
install_requires=['django>=2.0', 'rq>=1.2', 'redis>=3'],
17+
install_requires=['django>=2.0', 'rq>=1.14', 'redis>=3'],
1818
extras_require={
1919
'Sentry': ['raven>=6.1.0'],
2020
'testing': ['mock>=2.0.0'],

0 commit comments

Comments
 (0)