ソースを参照

(wups forgot some changelog entries) Bumped version to 0.3.2 and updated
Changelog

Ask Solem 16 年 前
コミット
f0dde06049
3 ファイル変更10 行追加2 行削除
  1. 8 0
      Changelog
  2. 1 1
      README
  3. 1 1
      celery/__init__.py

+ 8 - 0
Changelog

@@ -2,6 +2,14 @@
 Change history
 ==============
 
+0.3.2 [2009-06-08 01:07 P.M CET] askh@opera.com
+-----------------------------------------------
+
+	* celeryd: Added option ``--discard``: Discard (delete!) all waiting
+		messages in the queue.
+
+	* celeryd: The ``--wakeup-after`` option was not handled as a float.
+
 0.3.1 [2009-06-08 01:07 P.M CET] askh@opera.com
 -----------------------------------------------
 

+ 1 - 1
README

@@ -2,7 +2,7 @@
 celery - Distributed Task Queue for Django.
 ============================================
 
-:Version: 0.3.1
+:Version: 0.3.2
 
 Introduction
 ============

+ 1 - 1
celery/__init__.py

@@ -1,5 +1,5 @@
 """Distributed Task Queue for Django"""
-VERSION = (0, 3, 1)
+VERSION = (0, 3, 2)
 __version__ = ".".join(map(str, VERSION))
 __author__ = "Ask Solem"
 __contact__ = "askh@opera.com"