Browse Source

[Internal Release] Bumped version to 0.2.0-pre3, and updated changelog

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

+ 7 - 0
Changelog

@@ -2,6 +2,13 @@
 Change history
 ==============
 
+0.2.0-pre3 [2009-05-20 05:14 P.M CET] askh@opera.com
+----------------------------------------------------
+
+	 * *Internal release*. Improved handling of unpickled exceptions,
+	 	get_result() now tries to recreate something looking like the
+	 	original exception.
+
 0.2.0-pre2 [2009-05-20 01:56 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.2.0-pre2
+:Version: 0.2.0-pre3
 
 Introduction
 ------------

+ 1 - 1
celery/__init__.py

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