Browse Source

2.2.0 release candidate 1

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

+ 2 - 2
Changelog

@@ -9,8 +9,8 @@
 
 2.2.0
 =====
-:release-date: TBA
-:status: FREEZE
+:release-date: TBA (target end of january)
+:status: release candidate
 :branch: master
 
 .. _v220-important:

+ 1 - 1
README.rst

@@ -4,7 +4,7 @@
 
 .. image:: http://cloud.github.com/downloads/ask/celery/celery_favicon_128.png
 
-:Version: 2.2.0b1
+:Version: 2.2.0rc1
 :Web: http://celeryproject.org/
 :Download: http://pypi.python.org/pypi/celery/
 :Source: http://github.com/ask/celery/

+ 1 - 1
celery/__init__.py

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