Pārlūkot izejas kodu

Bumps version to 2.4.1 and updates Changelog

Ask Solem 13 gadi atpakaļ
vecāks
revīzija
3c22f51605
4 mainītis faili ar 12 papildinājumiem un 3 dzēšanām
  1. 9 0
      Changelog
  2. 1 1
      README.rst
  3. 1 1
      celery/__init__.py
  4. 1 1
      docs/includes/introduction.txt

+ 9 - 0
Changelog

@@ -5,6 +5,15 @@
 .. contents::
     :local:
 
+.. _version-2.4.2:
+
+2.4.2
+=====
+:release-date: 2011-11-14 12:00 P.M GMT
+
+* Program module no longer uses relative imports so that it is
+  possible to do ``python -m celery.bin.name``.
+
 .. _version-2.4.1:
 
 2.4.1

+ 1 - 1
README.rst

@@ -4,7 +4,7 @@
 
 .. image:: http://cloud.github.com/downloads/ask/celery/celery_128.png
 
-:Version: 2.4.1
+:Version: 2.4.2
 :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, 1)
+VERSION = (2, 4, 2)
 
 __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.1
+:Version: 2.4.2
 :Web: http://celeryproject.org/
 :Download: http://pypi.python.org/pypi/celery/
 :Source: http://github.com/ask/celery/