Browse Source

Bumps version to 2.6.0a3

Ask Solem 13 years ago
parent
commit
4b4abdbc3b
4 changed files with 19 additions and 3 deletions
  1. 1 1
      README.rst
  2. 1 1
      celery/__init__.py
  3. 1 1
      docs/includes/introduction.txt
  4. 16 0
      docs/whatsnew-2.5.rst

+ 1 - 1
README.rst

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

+ 1 - 1
celery/__init__.py

@@ -5,7 +5,7 @@
 
 from __future__ import absolute_import
 
-VERSION = (2, 6, 0, "a2")
+VERSION = (2, 6, 0, "a3")
 __version__ = ".".join(map(str, VERSION[0:3])) + "".join(VERSION[3:])
 __author__ = "Ask Solem"
 __contact__ = "ask@celeryproject.org"

+ 1 - 1
docs/includes/introduction.txt

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

+ 16 - 0
docs/whatsnew-2.5.rst

@@ -36,6 +36,22 @@ as well as PyPy and Jython.
 Important Notes
 ===============
 
+Now depends on :mod:`billiard`.
+-------------------------------
+
+Billiard is a fork of the multiprocessing containing
+the no-execv patch by sbt (http://bugs.python.org/issue8713),
+and also contains the pool improvements previously located in Celery.
+
+This fork was necessary as changes to the C extension code was required
+for the no-execv patch to work.
+
+- Issue #625
+- Issue #627
+- Issue #640
+- `django-celery #122 <http://github.com/ask/django-celery/issues/122`
+- `django-celery #124 <http://github.com/ask/django-celery/issues/122`
+
 Broker connection pool now enabled by default
 ---------------------------------------------