Parcourir la source

Bumped version to 0.2.0-pre2

Ask Solem il y a 16 ans
Parent
commit
a12d19bf7f
3 fichiers modifiés avec 10 ajouts et 4 suppressions
  1. 8 2
      Changelog
  2. 1 1
      README.rst
  3. 1 1
      celery/__init__.py

+ 8 - 2
Changelog

@@ -2,7 +2,13 @@
 Change history
 ==============
 
-0.2.0-pre1 [2009-05-20 04:13 P.M CET] askh@opera.com
+0.2.0-pre2 [2009-05-20 01:56 P.M CET] askh@opera.com
+----------------------------------------------------
+
+	* Now handles unpickleable exceptions (like the dynimically generated
+	  subclasses of ``django.core.exception.MultipleObjectsReturned``).
+
+0.2.0-pre1 [2009-05-20 12:33 P.M CET] askh@opera.com
 ----------------------------------------------------
 
 	* It's getting quite stable, with a lot of new features, so bump
@@ -12,7 +18,7 @@ Change history
 	  been removed. Use ``celery.backends.default_backend.mark_as_read()``, 
 	  and ``celery.backends.default_backend.mark_as_failure()`` instead.
 
-0.1.15 [2009-05-20 04:13 P.M CET] askh@opera.com
+0.1.15 [2009-05-19 04:13 P.M CET] askh@opera.com
 ------------------------------------------------
 
 	* The celery daemon was leaking AMQP connections, this should be fixed,

+ 1 - 1
README.rst

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

+ 1 - 1
celery/__init__.py

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