Skip to content

Commit

Permalink
Updates Changelog and bumps version to 2.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ask committed Feb 3, 2011
1 parent 0574f21 commit 15aaa94
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 4 deletions.
34 changes: 32 additions & 2 deletions Changelog
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,41 @@
.. contents::
:local:

.. _version-2.2.2:

2.2.2
=====
:release-date: 2011-02-03 16:00 PM CET

.. _v222-fixes:

Fixes
-----

* Celerybeat could not read the schedule properly, so entries in
:setting:`CELERYBEAT_SCHEDULE` would not be scheduled.

* Task error log message now includes `exc_info` again.

* The `eta` argument can now be used with `task.retry`.

Previously it was overwritten by the countdown argument.

* celeryd-multi/celeryd_detach: Now logs errors occuring when executing
the `celeryd` command.

* daemonizing cookbook: Fixed typo ``--time-limit 300`` ->
``--time-limit=300``

* Colors in logging broke non-string objects in log messages.

* ``setup_task_logger`` no longer makes assumptions about magic task kwargs.

.. _version-2.2.1:

2.2.1
=====
:release-date: 2011-02-02 16:00 PM CEST
:release-date: 2011-02-02 16:00 PM CET

.. _v221-fixes:

Expand All @@ -32,7 +62,7 @@ Fixes

2.2.0
=====
:release-date: 2011-02-01 10:00 AM CEST
:release-date: 2011-02-01 10:00 AM CET

.. _v220-important:

Expand Down
2 changes: 1 addition & 1 deletion celery/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import os
import sys

VERSION = (2, 2, 1)
VERSION = (2, 2, 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
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:Version: 2.2.1
:Version: 2.2.2
:Web: http://celeryproject.org/
:Download: http://pypi.python.org/pypi/celery/
:Source: http://github.com/ask/celery/
Expand Down

0 comments on commit 15aaa94

Please sign in to comment.