Forráskód Böngészése

Bumps version to 3.0.23 and updates Changelog

Ask Solem 11 éve
szülő
commit
35211606a4
4 módosított fájl, 24 hozzáadás és 4 törlés
  1. 21 1
      Changelog
  2. 1 1
      README.rst
  3. 1 1
      celery/__init__.py
  4. 1 1
      docs/includes/introduction.txt

+ 21 - 1
Changelog

@@ -13,10 +13,30 @@ If you're looking for versions prior to 3.0.x you should go to :ref:`history`.
 
 3.0.23
 ======
-:release-date: 2013-08-31 16:00 P.M BST
+:release-date: 2013-09-02 01:00 P.M BST
 
 - Now depends on :ref:`Kombu 2.5.14 <kombu:version-2.5.14>`.
 
+- ``send_task`` did not honor ``link`` and ``link_error`` arguments.
+
+    This had the side effect of chains not calling unregistered tasks,
+    silently discarding them.
+
+    Fix contributed by Taylor Nelson.
+
+- :mod:`celery.state`: Optimized precedence lookup.
+
+    Contributed by Matt Robenolt.
+
+- Posix: Daemonization did not redirect ``sys.stdin`` to ``/dev/null``.
+
+    Fix contributed by Alexander Smirnov.
+
+- Canvas: group bug caused fallback to default app when ``.apply_async`` used
+  (Issue #1516)
+
+- Canvas: generator arguments was not always pickleable.
+
 .. _version-3.0.22:
 
 3.0.22

+ 1 - 1
README.rst

@@ -4,7 +4,7 @@
 
 .. image:: http://cloud.github.com/downloads/celery/celery/celery_128.png
 
-:Version: 3.0.22 (Chiastic Slide)
+:Version: 3.0.23 (Chiastic Slide)
 :Web: http://celeryproject.org/
 :Download: http://pypi.python.org/pypi/celery/
 :Source: http://github.com/celery/celery/

+ 1 - 1
celery/__init__.py

@@ -8,7 +8,7 @@
 from __future__ import absolute_import
 
 SERIES = 'Chiastic Slide'
-VERSION = (3, 0, 22)
+VERSION = (3, 0, 23)
 __version__ = '.'.join(str(p) for p in VERSION[0:3]) + ''.join(VERSION[3:])
 __author__ = 'Ask Solem'
 __contact__ = 'ask@celeryproject.org'

+ 1 - 1
docs/includes/introduction.txt

@@ -1,4 +1,4 @@
-:Version: 3.0.22 (Chiastic Slide)
+:Version: 3.0.23 (Chiastic Slide)
 :Web: http://celeryproject.org/
 :Download: http://pypi.python.org/pypi/celery/
 :Source: http://github.com/celery/celery/