Skip to content

Commit

Permalink
Bumps version to 3.1.18 and updates Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
ask committed Apr 22, 2015
1 parent 2e0ceeb commit 4381ba5
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 5 deletions.
45 changes: 44 additions & 1 deletion Changelog
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,50 @@ new in Celery 3.1.

- Now depends on :mod:`billiard` 3.3.0.20.

- **Worker**: Properly recycle Django database connection in the worker when CONN_MAX_AGE is used.
- **Django**: Now supports Django 1.8 (Issue #2536).

Fix contributed by Bence Tamas and Mickaël Penhard.

- **Results**: MongoDB result backend now compatible with pymongo 3.0.

Fix contributed by Fatih Sucu.

- **Tasks**: Fixed bug only happening when a task has multiple callbacks
(Issue #2515).

Fix contributed by NotSqrt.

- **Commands**: Preload options now support ``--arg value`` syntax.

Fix contributed by John Anderson.

- **Compat**: A typo caused ``celery.log.setup_logging_subsystem`` to be
undefined.

Fix contributed by Gunnlaugur Thor Briem.

- **init scripts**: The celerybeat generic init script now uses
``/bin/sh`` instead of bash (Issue #2496).

Fix contributed by Jelle Verstraaten.

- **Django**: Fixed a :exc:`TypeError` sometimes occurring in logging
when validating models.

Fix contributed by Alexander.

- **Commands**: Worker now supports new ``--executable`` argument that can
be used with ``--detach``.

Contributed by Bert Vanderbauwhede.

- **Canvas**: Fixed crash in chord unlock fallback task (Issue #2404).

- **Worker**: Fixed rare crash occurring with ``--autoscale`` enabled
(Issue #2411).

- **Django**: Properly recycle worker Django database connections when the
Django ``CONN_MAX_AGE`` setting is enabled (Issue #2453).

Fix contributed by Luke Burden.

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

.. image:: http://cloud.github.com/downloads/celery/celery/celery_128.png

:Version: 3.1.17 (Cipater)
:Version: 3.1.18 (Cipater)
:Web: http://celeryproject.org/
:Download: http://pypi.python.org/pypi/celery/
:Source: http://github.com/celery/celery/
Expand Down Expand Up @@ -183,7 +183,7 @@ development easier, and sometimes they add important hooks like closing
database connections at ``fork``.

.. _`Django`: http://djangoproject.com/
.. _`Pylons`: http://pylonshq.com/
.. _`Pylons`: http://pylonsproject.org/
.. _`Flask`: http://flask.pocoo.org/
.. _`web2py`: http://web2py.com/
.. _`Bottle`: http://bottlepy.org/
Expand Down
2 changes: 1 addition & 1 deletion celery/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
)

SERIES = 'Cipater'
VERSION = version_info_t(3, 1, 17, '', '')
VERSION = version_info_t(3, 1, 18, '', '')
__version__ = '{0.major}.{0.minor}.{0.micro}{0.releaselevel}'.format(VERSION)
__author__ = 'Ask Solem'
__contact__ = 'ask@celeryproject.org'
Expand Down
2 changes: 1 addition & 1 deletion docs/includes/introduction.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:Version: 3.1.17 (Cipater)
:Version: 3.1.18 (Cipater)
:Web: http://celeryproject.org/
:Download: http://pypi.python.org/pypi/celery/
:Source: http://github.com/celery/celery/
Expand Down

0 comments on commit 4381ba5

Please sign in to comment.