@@ -2,6 +2,11 @@
Change history
==============
+0.1.11 :date:`2009-05-12 14:08 P.M CET` :author:askh@opera.com
+
+ * The logging system was leaking file descriptors, resulting in servers
+ stopping with the EMFILES (too many open files) error. (fixed)
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.
@@ -4,7 +4,7 @@ celery - Distributed Task Queue for Django.
:Authors:
Ask Solem (askh@opera.com)
-:Version: 0.1.10
+:Version: 0.1.11
Introduction
------------
@@ -1,5 +1,5 @@
"""Distributed Task Queue for Django"""
-VERSION = (0, 1, 10)
+VERSION = (0, 1, 11)
__version__ = ".".join(map(str, VERSION))
__author__ = "Ask Solem"
__contact__ = "askh@opera.com"