Skip to content

Commit be1f55f

Browse files
author
Ask Solem
committed
Bumped version to 2.1.2 and updated Changelog
1 parent e6825ed commit be1f55f

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

Changelog

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,16 @@ Fixes
3131
You can re-enable this by using the `propagate` argument to
3232
`task.get_logger`.
3333

34+
* A 2 second timeout for sending error e-mails has been added.
35+
36+
The mail server used should have as little latency as possible,
37+
as the sending of error e-mails is currently blocking the worker.
38+
Preferably the mailserver should be local.
39+
3440
* celeryd: Now sends the `task-retried` event for retried tasks.
3541

42+
This means retried tasks will show as RETRY in the event monitors.
43+
3644
* Logging should now handle utf-8 correctly.
3745

3846
* celeryd: Added `exc_info` error logging messages.

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

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

7-
:Version: 2.1.1
7+
:Version: 2.1.2
88
:Web: http://celeryproject.org/
99
:Download: http://pypi.python.org/pypi/celery/
1010
:Source: http://github.com/ask/celery/

celery/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Distributed Task Queue"""
22

3-
VERSION = (2, 1, 1)
3+
VERSION = (2, 1, 2)
44

55
__version__ = ".".join(map(str, VERSION[0:3])) + "".join(VERSION[3:])
66
__author__ = "Ask Solem"

docs/includes/introduction.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
:Version: 2.1.1
1+
:Version: 2.1.2
22
:Web: http://celeryproject.org/
33
:Download: http://pypi.python.org/pypi/celery/
44
:Source: http://github.com/ask/celery/

0 commit comments

Comments
 (0)