Sfoglia il codice sorgente

Bumps version to 3.0.6

Ask Solem 12 anni fa
parent
commit
5cf098e3e0
3 ha cambiato i file con 4 aggiunte e 4 eliminazioni
  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/celery/celery/celery_128.png
 
-:Version: 3.0.5 (Chiastic Slide)
+:Version: 3.0.6 (Chiastic Slide)
 :Web: http://celeryproject.org/
 :Download: http://pypi.python.org/pypi/celery/
 :Source: http://github.com/celery/celery/
@@ -97,7 +97,7 @@ Celery is...
 
         celery = Celery('hello', broker='amqp://guest@localhost//')
 
-        @celery.task()
+        @celery.task
         def hello():
             return 'hello world'
 

+ 1 - 1
celery/__init__.py

@@ -8,7 +8,7 @@
 from __future__ import absolute_import
 
 SERIES = 'Chiastic Slide'
-VERSION = (3, 0, 5)
+VERSION = (3, 0, 6)
 __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: 3.0.5 (Chiastic Slide)
+:Version: 3.0.6 (Chiastic Slide)
 :Web: http://celeryproject.org/
 :Download: http://pypi.python.org/pypi/celery/
 :Source: http://github.com/celery/celery/