Browse Source

Bumps version to 2.3.0

Ask Solem 13 years ago
parent
commit
3baf25c7ae
4 changed files with 16 additions and 5 deletions
  1. 13 2
      Changelog
  2. 1 1
      README.rst
  3. 1 1
      celery/__init__.py
  4. 1 1
      docs/includes/introduction.txt

+ 13 - 2
Changelog

@@ -10,8 +10,6 @@
 2.3.0
 =====
 :release-date: TBA
-:status: frozen
-:branch: master
 
 :tested: cPython: 2.5, 2.6, 2.7; PyPy: 1.5; Jython: 2.5.2
 
@@ -20,6 +18,8 @@
 Important Notes
 ---------------
 
+* Now requires Kombu 1.2.1
+
 * Results are now disabled by default.
 
     The AMQP backend was not a good default because often the users were
@@ -40,6 +40,12 @@ Important Notes
 
     For help choosing a backend please see :ref:`task-result-backends`.
 
+* The debian init scripts have been deprecated in favor of the generic-init.d
+  init scripts.
+
+    In addition generic init scripts for celerybeat and celeryev has been
+    added.
+
 .. _v230-news:
 
 News
@@ -216,6 +222,11 @@ Fixes
 * ``CELERY_TASK_ERROR_WHITE_LIST`` is now properly initialized
   in all loaders.
 
+* celeryd_detach now passes thorugh commandline configuration.
+
+* Remote control command ``add_consumer`` now does nothing if the
+  queue is already being consumed from.
+
 
 .. _version-2.2.7:
 

+ 1 - 1
README.rst

@@ -4,7 +4,7 @@
 
 .. image:: http://cloud.github.com/downloads/ask/celery/celery_128.png
 
-:Version: 2.3.0rc2
+:Version: 2.3.0
 :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 @@
 import os
 import sys
 
-VERSION = (2, 3, 0, "rc2")
+VERSION = (2, 3, 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.3.0rc2
+:Version: 2.3.0
 :Web: http://celeryproject.org/
 :Download: http://pypi.python.org/pypi/celery/
 :Source: http://github.com/ask/celery/