Skip to content

Commit e871001

Browse files
committed
Updated README.
1 parent cdd4d8c commit e871001

File tree

1 file changed

+18
-7
lines changed

1 file changed

+18
-7
lines changed

README.rst

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -147,9 +147,9 @@ If you want to run ``rqworker`` in burst mode, you can pass in the ``--burst`` f
147147

148148
If you need to use a custom worker class, you can pass in the ``--worker-class`` flag
149149
with the path to your worker::
150-
150+
151151
python manage.py rqworker high default low --worker-class 'path.to.GeventWorker'
152-
152+
153153
Support for RQ Scheduler
154154
------------------------
155155

@@ -323,21 +323,21 @@ Deploying on Heroku
323323

324324
Add `django-rq` to your `requirements.txt` file with:
325325

326-
.. code-block:: bash
326+
.. code-block:: bash
327327
328328
pip freeze > requirements.txt
329-
329+
330330
Update your `Procfile` to:
331331

332-
.. code-block:: bash
332+
.. code-block:: bash
333333
334334
web: gunicorn --pythonpath="$PWD/your_app_name" config.wsgi:application
335335
336336
worker: python your_app_name/manage.py rqworker high default low
337337
338338
Commit and re-deploy. Then add your new worker with:
339339

340-
.. code-block:: bash
340+
.. code-block:: bash
341341
342342
heroku scale worker=1
343343
@@ -352,11 +352,22 @@ admin fit in with the django-suit styles.
352352
Changelog
353353
=========
354354

355+
0.9.1
356+
-----
357+
* Added ``-i`` and ``--queue`` options to `rqscheduler` management command. Thanks @mbodock and @sbussetti!
358+
* Added ``--pid`` option to ``rqworker`` management command. Thanks @ydaniv!
359+
* Admin interface fixes for Django 1.9. Thanks @philippbosch!
360+
* Compatibility fix for ``django-redis-cache``. Thanks @scream4ik!
361+
* **Backward incompatible**: Exception handlers are now defined via ``RQ_EXCEPTION_HANDLERS`` in ``settings.py``. Thanks @sbussetti!
362+
* Queues in django-admin are now sorted by name. Thanks @pnuckowski!
363+
364+
365+
355366
0.9.0
356367
-----
357368
* Support for Django 1.9. Thanks @aaugustin and @viaregio!
358369
* ``rqworker`` management command now accepts ``--worker-ttl`` argument. Thanks pnuckowski!
359-
* You can now easily specify custom ``EXCEPTION_HANDLERS`` in ``settings.py``. Thanks @xuhcc!
370+
* You can now easily specify custom ``EXCEPTION_HANDLERS`` in ``settings.py``. Thanks @xuhcc!
360371
* ``django-rq`` now requires RQ >= 0.5.5
361372

362373
0.8.0

0 commit comments

Comments
 (0)