Skip to content

Commit

Permalink
Bump version to 2.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
selwin committed Feb 7, 2023
1 parent 31757e0 commit 4695212
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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!
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, 6, 0)
VERSION = (2, 7, 0)

from .decorators import job
from .queues import enqueue, get_connection, get_queue, get_scheduler
Expand Down
6 changes: 3 additions & 3 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.6.0',
version='2.7.0',
author='Selwin Ong',
author_email='[email protected]',
packages=['django_rq'],
Expand All @@ -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=[
Expand All @@ -36,5 +36,5 @@
'Programming Language :: Python :: 3.8',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
]
],
)

0 comments on commit 4695212

Please sign in to comment.