Browse Source

Bumps version to 2.2.7 and updates Changelog

Ask Solem 14 years ago
parent
commit
2222fa9d5b
4 changed files with 26 additions and 3 deletions
  1. 23 0
      Changelog
  2. 1 1
      README.rst
  3. 1 1
      celery/__init__.py
  4. 1 1
      docs/includes/introduction.txt

+ 23 - 0
Changelog

@@ -5,6 +5,29 @@
 .. contents::
     :local:
 
+.. _version-2.2.7:
+
+2.2.7
+=====
+:release-date: TBA
+
+* New signals: :signal:`after_setup_logger` and
+  :signal:`after_setup_task_logger`
+
+    These signals can be used to augment logging configuration
+    after Celery has set up logging.
+
+* Redis result backend now works with Redis 2.4.4.
+
+* celeryd_multi: The ``--gid`` option now works correctly.
+
+* celeryd: Retry wrongfully used the repr of the traceback instead
+  of the string representation.
+
+* App.config_from_object:  Now loads module, not attribute of module.
+
+* Fixed issue where logging of objects would give "<Unrepresentable: ...>"
+
 .. _version-2.2.6:
 
 2.2.6

+ 1 - 1
README.rst

@@ -4,7 +4,7 @@
 
 .. image:: http://cloud.github.com/downloads/ask/celery/celery_favicon_128.png
 
-:Version: 2.2.6
+:Version: 2.2.7
 :Web: http://celeryproject.org/
 :Download: http://pypi.python.org/pypi/celery/
 :Source: http://github.com/ask/celery/

+ 1 - 1
celery/__init__.py

@@ -5,7 +5,7 @@
 import os
 import sys
 
-VERSION = (2, 2, 6)
+VERSION = (2, 2, 7)
 
 __version__ = ".".join(map(str, VERSION[0:3])) + "".join(VERSION[3:])
 __author__ = "Ask Solem"

+ 1 - 1
docs/includes/introduction.txt

@@ -1,4 +1,4 @@
-:Version: 2.2.6
+:Version: 2.2.7
 :Web: http://celeryproject.org/
 :Download: http://pypi.python.org/pypi/celery/
 :Source: http://github.com/ask/celery/