diff --git a/CHANGELOG.md b/CHANGELOG.md index fd0b3f10..ca6b415f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# Version 2.7.0 (2023-02-07) +* Able to show multiple execution results for each job (requires RQ v1.12). Thanks @selwin! +* Various admin interface improvements. Thanks @selwin! + # Version 2.6.0 (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! diff --git a/django_rq/__init__.py b/django_rq/__init__.py index a29e584f..5946fd20 100644 --- a/django_rq/__init__.py +++ b/django_rq/__init__.py @@ -1,4 +1,4 @@ -VERSION = (2, 6, 0) +VERSION = (2, 7, 0) from .decorators import job from .queues import enqueue, get_connection, get_queue, get_scheduler diff --git a/setup.py b/setup.py index 9d080a26..955ec291 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name='django-rq', - version='2.6.0', + version='2.7.0', author='Selwin Ong', author_email='selwin.ong@gmail.com', packages=['django_rq'], @@ -16,7 +16,7 @@ package_data={'': ['README.rst']}, install_requires=['django>=2.0', 'rq>=1.2', 'redis>=3'], extras_require={ - 'Sentry': ['raven>=6.1.0'], + 'Sentry': ['raven>=6.1.0'], 'testing': ['mock>=2.0.0'], }, classifiers=[ @@ -36,5 +36,5 @@ 'Programming Language :: Python :: 3.8', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Software Development :: Libraries :: Python Modules', - ] + ], )