Parcourir la source

Bumped version to 2.1.3 and updated Changelog

Ask Solem il y a 15 ans
Parent
commit
5feea7a41a
4 fichiers modifiés avec 29 ajouts et 4 suppressions
  1. 26 1
      Changelog
  2. 1 1
      README.rst
  3. 1 1
      celery/__init__.py
  4. 1 1
      docs/includes/introduction.txt

+ 26 - 1
Changelog

@@ -5,11 +5,36 @@
 .. contents::
     :local:
 
+.. _version-2.1.3:
+
+2.1.3
+=====
+:release-date: 2010-11-09 17:00 PM CEST
+
+.. _v213-fixes:
+
+* Fixed deadlocks in `timer2` which could lead to `djcelerymon`/`celeryev -c`
+  hanging.
+
+* `EventReceiver`: now sends heartbeat request to find workers.
+
+    This means :program:`celeryev` and friends finds workers immediately
+    at startup.
+
+* celeryev cursesmon: Set screen_delay to 10ms, so the screen refreshes more
+  often.
+
+* Fixed pickling errors when pickling `AsyncResult`s on older Python
+  versions.
+
+* celeryd: prefetch count was decremented by eta tasks even if there
+  were no active prefetch limits.
+
 .. _version-2.1.2:
 
 2.1.2
 =====
-:release-data: TBA
+:release-date: 2010-10-29 15:00 PM CEST
 
 .. _v212-fixes:
 

+ 1 - 1
README.rst

@@ -4,7 +4,7 @@
 
 .. image:: http://cloud.github.com/downloads/ask/celery/celery_favicon_128.png
 
-:Version: 2.1.2
+:Version: 2.1.3
 :Web: http://celeryproject.org/
 :Download: http://pypi.python.org/pypi/celery/
 :Source: http://github.com/ask/celery/

+ 1 - 1
celery/__init__.py

@@ -1,6 +1,6 @@
 """Distributed Task Queue"""
 
-VERSION = (2, 1, 2)
+VERSION = (2, 1, 3)
 
 __version__ = ".".join(map(str, VERSION[0:3])) + "".join(VERSION[3:])
 __author__ = "Ask Solem"

+ 1 - 1
docs/includes/introduction.txt

@@ -1,4 +1,4 @@
-:Version: 2.1.2
+:Version: 2.1.3
 :Web: http://celeryproject.org/
 :Download: http://pypi.python.org/pypi/celery/
 :Source: http://github.com/ask/celery/