From 596e413586c40907fa6303ebb893ca86fe63f956 Mon Sep 17 00:00:00 2001 From: Selwin Ong Date: Sun, 14 May 2023 08:31:42 +0700 Subject: [PATCH] Bump version to 2.8.1 --- CHANGELOG.md | 5 +++++ django_rq/__init__.py | 2 +- setup.py | 4 ++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a04d41e..fd63f14d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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! diff --git a/django_rq/__init__.py b/django_rq/__init__.py index 8121b7f0..5bfd1f46 100644 --- a/django_rq/__init__.py +++ b/django_rq/__init__.py @@ -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 diff --git a/setup.py b/setup.py index 11cab42d..dbb935a8 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name='django-rq', - version='2.8.0', + version='2.8.1', author='Selwin Ong', author_email='selwin.ong@gmail.com', packages=['django_rq'], @@ -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'],