Browse Source

Bumped version to 0.1.14 and updated changelog

Ask Solem 16 years ago
parent
commit
1a5d19ccc8
3 changed files with 8 additions and 2 deletions
  1. 6 0
      Changelog
  2. 1 1
      README.rst
  3. 1 1
      celery/__init__.py

+ 6 - 0
Changelog

@@ -2,6 +2,12 @@
 Change history
 ==============
 
+0.1.14 [2009-05-19 01:08 P.M CET] askh@opera.com
+------------------------------------------------
+
+	* Fixed a syntax error in the ``TaskSet`` class.
+	(No such variable ``TimeOutError``).
+
 0.1.13 [2009-05-19 12:36 P.M CET] askh@opera.com
 ------------------------------------------------
 

+ 1 - 1
README.rst

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

+ 1 - 1
celery/__init__.py

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