فهرست منبع

Bumps version to 2.6.0a2

Ask Solem 13 سال پیش
والد
کامیت
7e3e22f6b3
3فایلهای تغییر یافته به همراه4 افزوده شده و 4 حذف شده
  1. 2 2
      README.rst
  2. 1 1
      celery/__init__.py
  3. 1 1
      docs/includes/introduction.txt

+ 2 - 2
README.rst

@@ -4,7 +4,7 @@
 
 .. image:: http://cloud.github.com/downloads/ask/celery/celery_128.png
 
-:Version: 2.6.0a1
+:Version: 2.6.0a2
 :Web: http://celeryproject.org/
 :Download: http://pypi.python.org/pypi/celery/
 :Source: http://github.com/ask/celery/
@@ -108,7 +108,7 @@ You probably want to see some code by now, so here's an example task
 adding two numbers:
 ::
 
-    from celery.task import task
+    from celery import task
 
     @task
     def add(x, y):

+ 1 - 1
celery/__init__.py

@@ -5,7 +5,7 @@
 
 from __future__ import absolute_import
 
-VERSION = (2, 6, 0, "a1")
+VERSION = (2, 6, 0, "a2")
 __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.0a1
+:Version: 2.6.0a2
 :Web: http://celeryproject.org/
 :Download: http://pypi.python.org/pypi/celery/
 :Source: http://github.com/ask/celery/