瀏覽代碼

Bumped version to 0.9.7 / 1.0.0-pre3 and updated Changelog.

Ask Solem 15 年之前
父節點
當前提交
b93b9942bc
共有 4 個文件被更改,包括 14 次插入3 次删除
  1. 11 0
      Changelog
  2. 1 1
      README.rst
  3. 1 1
      celery/__init__.py
  4. 1 1
      docs/includes/introduction.txt

+ 11 - 0
Changelog

@@ -211,6 +211,14 @@ NEWS
   setting has been added: ``CELERYD_PREFETCH_MULTIPLIER``, which is set
   to ``4`` by default.
 
+* Improved support for webhook tasks. 
+  ``celery.task.rest`` is now deprecated, replaced with the new and shiny
+  :mod:`celery.task.http`. With more reflective names, sensible interface, and
+  it's possible to override the methods used to perform HTTP requests.
+
+* The results of tasksets are now cached by storing it in the result
+  backend. FIXME: Only database backend supports this yet!
+
 CHANGES
 -------
 
@@ -272,6 +280,9 @@ CHANGES
 * You can now set ``CELERY_IGNORE_RESULT`` to ignore task results by default
   (if enabled, tasks doesn't save results or errors to the backend used).
 
+* celeryd now correctly handles malformed messages by throwing away and
+  acknowledging the message, instead of crashing.
+
 BUGS
 ----
 

+ 1 - 1
README.rst

@@ -4,7 +4,7 @@
 
 .. image:: http://cloud.github.com/downloads/ask/celery/celery_favicon_128.png
 
-:Version: 1.0.0-pre2
+:Version: 1.0.0-pre3
 :Keywords: task queue, job queue, asynchronous, rabbitmq, amqp, redis,
   django, python, webhooks, queue, distributed
 

+ 1 - 1
celery/__init__.py

@@ -1,6 +1,6 @@
 """Distributed Task Queue"""
 
-VERSION = (0, 9, 6)
+VERSION = (0, 9, 7)
 
 __version__ = ".".join(map(str, VERSION))
 __author__ = "Ask Solem"

+ 1 - 1
docs/includes/introduction.txt

@@ -1,6 +1,6 @@
 .. image:: http://cloud.github.com/downloads/ask/celery/celery_favicon_128.png
 
-:Version: 1.0.0-pre2
+:Version: 1.0.0-pre3
 :Keywords: task queue, job queue, asynchronous, rabbitmq, amqp, redis,
   django, python, webhooks, queue, distributed