浏览代码

Bumps version to 3.1.20

Ask Solem 10 年之前
父节点
当前提交
1996e61274
共有 3 个文件被更改,包括 16 次插入17 次删除
  1. 14 15
      README.rst
  2. 1 1
      celery/__init__.py
  3. 1 1
      docs/includes/introduction.txt

+ 14 - 15
README.rst

@@ -4,7 +4,7 @@
 
 
 .. image:: http://cloud.github.com/downloads/celery/celery/celery_128.png
 .. image:: http://cloud.github.com/downloads/celery/celery/celery_128.png
 
 
-:Version: 3.1.19 (Cipater)
+:Version: 3.1.20 (Cipater)
 :Web: http://celeryproject.org/
 :Web: http://celeryproject.org/
 :Download: http://pypi.python.org/pypi/celery/
 :Download: http://pypi.python.org/pypi/celery/
 :Source: http://github.com/celery/celery/
 :Source: http://github.com/celery/celery/
@@ -164,19 +164,19 @@ Framework Integration
 Celery is easy to integrate with web frameworks, some of which even have
 Celery is easy to integrate with web frameworks, some of which even have
 integration packages:
 integration packages:
 
 
-    +--------------------+----------------------------------------------------+
-    | `Django`_          | not needed                                         |
-    +--------------------+----------------------------------------------------+
-    | `Pyramid`_         | `pyramid_celery`_                                  |
-    +--------------------+----------------------------------------------------+
-    | `Pylons`_          | `celery-pylons`_                                   |
-    +--------------------+----------------------------------------------------+
-    | `Flask`_           | not needed                                         |
-    +--------------------+----------------------------------------------------+
-    | `web2py`_          | `web2py-celery`_                                   |
-    +--------------------+----------------------------------------------------+
-    | `Tornado`_         | `tornado-celery`_ | `another tornado-celery`_      |
-    +--------------------+----------------------------------------------------+
+    +--------------------+------------------------+
+    | `Django`_          | not needed             |
+    +--------------------+------------------------+
+    | `Pyramid`_         | `pyramid_celery`_      |
+    +--------------------+------------------------+
+    | `Pylons`_          | `celery-pylons`_       |
+    +--------------------+------------------------+
+    | `Flask`_           | not needed             |
+    +--------------------+------------------------+
+    | `web2py`_          | `web2py-celery`_       |
+    +--------------------+------------------------+
+    | `Tornado`_         | `tornado-celery`_      |
+    +--------------------+------------------------+
 
 
 The integration packages are not strictly necessary, but they can make
 The integration packages are not strictly necessary, but they can make
 development easier, and sometimes they add important hooks like closing
 development easier, and sometimes they add important hooks like closing
@@ -194,7 +194,6 @@ database connections at ``fork``.
 .. _`web2py-celery`: http://code.google.com/p/web2py-celery/
 .. _`web2py-celery`: http://code.google.com/p/web2py-celery/
 .. _`Tornado`: http://www.tornadoweb.org/
 .. _`Tornado`: http://www.tornadoweb.org/
 .. _`tornado-celery`: http://github.com/mher/tornado-celery/
 .. _`tornado-celery`: http://github.com/mher/tornado-celery/
-.. _`another tornado-celery`: https://github.com/mayflaver/tornado-celery
 
 
 .. _celery-documentation:
 .. _celery-documentation:
 
 

+ 1 - 1
celery/__init__.py

@@ -19,7 +19,7 @@ version_info_t = namedtuple(
 )
 )
 
 
 SERIES = 'Cipater'
 SERIES = 'Cipater'
-VERSION = version_info_t(3, 1, 19, '', '')
+VERSION = version_info_t(3, 1, 20, '', '')
 __version__ = '{0.major}.{0.minor}.{0.micro}{0.releaselevel}'.format(VERSION)
 __version__ = '{0.major}.{0.minor}.{0.micro}{0.releaselevel}'.format(VERSION)
 __author__ = 'Ask Solem'
 __author__ = 'Ask Solem'
 __contact__ = 'ask@celeryproject.org'
 __contact__ = 'ask@celeryproject.org'

+ 1 - 1
docs/includes/introduction.txt

@@ -1,4 +1,4 @@
-:Version: 3.1.19 (Cipater)
+:Version: 3.1.20 (Cipater)
 :Web: http://celeryproject.org/
 :Web: http://celeryproject.org/
 :Download: http://pypi.python.org/pypi/celery/
 :Download: http://pypi.python.org/pypi/celery/
 :Source: http://github.com/celery/celery/
 :Source: http://github.com/celery/celery/