Skip to content

Commit

Permalink
Bumped version to 2.1.2 and updated Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Ask Solem committed Oct 29, 2010
1 parent e6825ed commit be1f55f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions Changelog
Expand Up @@ -31,8 +31,16 @@ Fixes
You can re-enable this by using the `propagate` argument to
`task.get_logger`.

* A 2 second timeout for sending error e-mails has been added.

The mail server used should have as little latency as possible,
as the sending of error e-mails is currently blocking the worker.
Preferably the mailserver should be local.

* celeryd: Now sends the `task-retried` event for retried tasks.

This means retried tasks will show as RETRY in the event monitors.

* Logging should now handle utf-8 correctly.

* celeryd: Added `exc_info` error logging messages.
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -4,7 +4,7 @@

.. image:: http://cloud.github.com/downloads/ask/celery/celery_favicon_128.png

:Version: 2.1.1
:Version: 2.1.2
:Web: http://celeryproject.org/
:Download: http://pypi.python.org/pypi/celery/
:Source: http://github.com/ask/celery/
Expand Down
2 changes: 1 addition & 1 deletion celery/__init__.py
@@ -1,6 +1,6 @@
"""Distributed Task Queue"""

VERSION = (2, 1, 1)
VERSION = (2, 1, 2)

__version__ = ".".join(map(str, VERSION[0:3])) + "".join(VERSION[3:])
__author__ = "Ask Solem"
Expand Down
2 changes: 1 addition & 1 deletion docs/includes/introduction.txt
@@ -1,4 +1,4 @@
:Version: 2.1.1
:Version: 2.1.2
:Web: http://celeryproject.org/
:Download: http://pypi.python.org/pypi/celery/
:Source: http://github.com/ask/celery/
Expand Down

0 comments on commit be1f55f

Please sign in to comment.