Browse Source

Version 2.4.0

Ask Solem 13 năm trước cách đây
mục cha
commit
b4759ba508
4 tập tin đã thay đổi với 8 bổ sung6 xóa
  1. 5 3
      Changelog
  2. 1 1
      README.rst
  3. 1 1
      celery/__init__.py
  4. 1 1
      docs/includes/introduction.txt

+ 5 - 3
Changelog

@@ -9,9 +9,7 @@
 
 2.4.0
 =====
-:release-date: 2011-10-28 04:00 P.M BST
-:status: FROZEN
-:branch: master
+:release-date: 2011-11-04 04:00 P.M GMT
 
 .. _v240-important:
 
@@ -32,6 +30,10 @@ Important Notes
 
     This is a workaround for http://bugs.python.org/issue6721#msg140215.
 
+    Be aware that while this fixes the logging library lock,
+    there could still be other locks initialized in the parent
+    process, introduced by custom code.
+
     Fix contributed by Harm Verhagen.
 
 * AMQP Result backend: Now expires results by default.

+ 1 - 1
README.rst

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

+ 1 - 1
celery/__init__.py

@@ -8,7 +8,7 @@ from __future__ import absolute_import
 import os
 import sys
 
-VERSION = (2, 4, 0, "rc1")
+VERSION = (2, 4, 0)
 
 __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.4.0rc1
+:Version: 2.4.0
 :Web: http://celeryproject.org/
 :Download: http://pypi.python.org/pypi/celery/
 :Source: http://github.com/ask/celery/