Browse Source

Bumped version to 2.2.0a2

Ask Solem 14 years ago
parent
commit
bd18d7f736
3 changed files with 7 additions and 7 deletions
  1. 5 5
      README.rst
  2. 1 1
      celery/__init__.py
  3. 1 1
      docs/includes/introduction.txt

+ 5 - 5
README.rst

@@ -4,7 +4,7 @@
 
 .. image:: http://cloud.github.com/downloads/ask/celery/celery_favicon_128.png
 
-:Version: 2.2.0a1
+:Version: 2.2.0a2
 :Web: http://celeryproject.org/
 :Download: http://pypi.python.org/pypi/celery/
 :Source: http://github.com/ask/celery/
@@ -194,23 +194,23 @@ is hosted at Github.
 Installation
 ============
 
-You can install `celery` either via the Python Package Index (PyPI)
+You can install Celery either via the Python Package Index (PyPI)
 or from source.
 
 To install using `pip`,::
 
-    $ pip install celery
+    $ pip install Celery
 
 To install using `easy_install`,::
 
-    $ easy_install celery
+    $ easy_install Celery
 
 .. _celery-installing-from-source:
 
 Downloading and installing from source
 --------------------------------------
 
-Download the latest version of `celery` from
+Download the latest version of Celery from
 http://pypi.python.org/pypi/celery/
 
 You can install it by doing the following,::

+ 1 - 1
celery/__init__.py

@@ -1,7 +1,7 @@
 """Distributed Task Queue"""
 import os
 
-VERSION = (2, 2, 0, "a1")
+VERSION = (2, 2, 0, "a2")
 
 __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.2.0a1
+:Version: 2.2.0a2
 :Web: http://celeryproject.org/
 :Download: http://pypi.python.org/pypi/celery/
 :Source: http://github.com/ask/celery/