浏览代码

Bumped version to 0.1.10

Ask Solem 16 年之前
父节点
当前提交
699e2fc100
共有 3 个文件被更改,包括 7 次插入3 次删除
  1. 5 1
      Changelog
  2. 1 1
      README.rst
  3. 1 1
      celery/__init__.py

+ 5 - 1
Changelog

@@ -2,10 +2,14 @@
 Change history
 ==============
 
-0.1.9 :date:`TBA` :author:askh@opera.com
+0.1.10 :date:`2009-05-11 12:46 P.M CET` :author:askh@opera.com
 
 	* Tasks now supports both positional arguments and keyword arguments.
 
+	* Requires carrot 0.3.8.
+
+	* The daemon now tries to reconnect if the connection is lost.
+
 0.1.8 :date:`2009-05-07 12:27 P.M CET` :author:askh@opera.com
 
 	* Better test coverage

+ 1 - 1
README.rst

@@ -4,7 +4,7 @@ celery - Distributed Task Queue for Django.
 
 :Authors:
     Ask Solem (askh@opera.com)
-:Version: 0.1.9
+:Version: 0.1.10
 
 Introduction
 ------------

+ 1 - 1
celery/__init__.py

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