Skip to content

Commit

Permalink
Bump version to 2.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
selwin committed May 14, 2023
1 parent c7594be commit 596e413
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Version 2.8.1 (2023-05-14)
* Added a button to stop currently running jobs. Thanks @gabriels1234!
* Added a failed jobs column to rqstats command. Thanks @dangquangdon!
* Explicitly requires RQ >= 1.14 in `setup.py`. Thanks @selwin!

# Version 2.8.0 (2023-05-02)
* Support for RQ 1.14. Thanks @Cerebro92 and @selwin!
* Show scheduler PID information in admin interface. Thanks @gabriels1234!
Expand Down
2 changes: 1 addition & 1 deletion django_rq/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = (2, 8, 0)
VERSION = (2, 8, 1)

from .decorators import job
from .queues import enqueue, get_connection, get_queue, get_scheduler
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name='django-rq',
version='2.8.0',
version='2.8.1',
author='Selwin Ong',
author_email='[email protected]',
packages=['django_rq'],
Expand All @@ -14,7 +14,7 @@
zip_safe=False,
include_package_data=True,
package_data={'': ['README.rst']},
install_requires=['django>=2.0', 'rq>=1.2', 'redis>=3'],
install_requires=['django>=2.0', 'rq>=1.14', 'redis>=3'],
extras_require={
'Sentry': ['raven>=6.1.0'],
'testing': ['mock>=2.0.0'],
Expand Down

0 comments on commit 596e413

Please sign in to comment.