瀏覽代碼

Bumped version to 0.8.4 and updated Changelog

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

+ 12 - 0
Changelog

@@ -2,6 +2,18 @@
 Change history
 ==============
 
+0.8.4 [2010-02-05 01:52 P.M CEST]
+---------------------------------
+
+* Now emits a warning if the --detach argument is used.
+  --detach should not be used anymore, as it has several not easily fixed
+  bugs related to it. Instead, use something like start-stop-daemon,
+  supervisord or launchd (os x).
+
+* Make sure logger class is process aware, even if running Python >= 2.6.
+
+* Error e-mails are not sent anymore when the task is retried.
+
 0.8.3 [2009-12-22 09:43 A.M CEST]
 ---------------------------------
 

+ 1 - 1
README.rst

@@ -2,7 +2,7 @@
  celery - Distributed Task Queue
 =================================
 
-:Version: 0.8.3
+:Version: 0.8.4
 
 Introduction
 ============

+ 1 - 1
celery/__init__.py

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

+ 1 - 1
docs/introduction.rst

@@ -2,7 +2,7 @@
  celery - Distributed Task Queue
 =================================
 
-:Version: 0.8.3
+:Version: 0.8.4
 
 Introduction
 ============