Browse Source

Bumped verison to 0.1.15, updated changelog and added link to API documentation in README.rst

Ask Solem 16 years ago
parent
commit
98e6babb3b
3 changed files with 11 additions and 2 deletions
  1. 5 0
      Changelog
  2. 5 1
      README.rst
  3. 1 1
      celery/__init__.py

+ 5 - 0
Changelog

@@ -2,6 +2,11 @@
 Change history
 ==============
 
+0.1.15 [2009-05-20 04:13 P.M CET] askh@opera.com
+------------------------------------------------
+
+	* The celery daemon was leaking AMQP connections, this should be fixed, if you have any problems with too many files open (like ``emfile`` errors in ``rabbit.log``, please contact us!
+
 0.1.14 [2009-05-19 01:08 P.M CET] askh@opera.com
 ------------------------------------------------
 

+ 5 - 1
README.rst

@@ -4,7 +4,7 @@ celery - Distributed Task Queue for Django.
 
 :Authors:
     Ask Solem (askh@opera.com)
-:Version: 0.1.14
+:Version: 0.1.15
 
 Introduction
 ------------
@@ -12,6 +12,10 @@ Introduction
 ``celery`` is a distributed task queue framework for Django.
 More information will follow.
 
+Be sure to also consult the `API Reference Documentation`_
+
+.. _`API Reference Docmentation`: http://ask.github.com/celery/
+
 Installation
 =============
 

+ 1 - 1
celery/__init__.py

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