Skip to content

Commit

Permalink
Bump version to 2.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
selwin committed Apr 10, 2020
1 parent 73e5bd6 commit 8dff93b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 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.3.1 (2020-04-10)
* Added `--with-scheduler` argument to `rqworker` management command. Thanks @stlk!
* Fixed a bug where opening job detail would crash if job.dependency no longer exists. Thanks @selwin!

# Version 2.3.0 (2020-02-09)
* Support for RQ's new `ScheduledJobRegistry`. Thanks @Yolley!
* Improve performance when displaying pages showing a large number of jobs by using `Job.fetch_many()`. Thanks @selwin!
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, 3, 0)
VERSION = (2, 3, 1)

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

setup(
name='django-rq',
version='2.3.0',
version='2.3.1',
author='Selwin Ong',
author_email='[email protected]',
packages=['django_rq'],
Expand Down

0 comments on commit 8dff93b

Please sign in to comment.