Ask Solem преди 15 години
родител
ревизия
eeb4f77aa9
променени са 4 файла, в които са добавени 5 реда и са изтрити 4 реда
  1. 2 1
      Makefile
  2. 1 1
      README.rst
  3. 1 1
      celery/__init__.py
  4. 1 1
      docs/introduction.rst

+ 2 - 1
Makefile

@@ -17,10 +17,11 @@ flakes:
 	find . -name "*.py" | xargs pyflakes
 
 clean_readme:
-	rm -f README.rst
+	rm -f README.rst README
 
 readme: clean_readme
 	python contrib/sphinx-to-rst.py docs/introduction.rst > README.rst
+	ln -s README.rst README
 
 bump:
 	contrib/bump -c celery

+ 1 - 1
README.rst

@@ -2,7 +2,7 @@
  celery - Distributed Task Queue
 =================================
 
-:Version: 0.9.1
+:Version: 0.9.2
 
 Introduction
 ============

+ 1 - 1
celery/__init__.py

@@ -1,6 +1,6 @@
 """Distributed Task Queue"""
 
-VERSION = (0, 9, 1)
+VERSION = (0, 9, 2)
 
 __version__ = ".".join(map(str, VERSION))
 __author__ = "Ask Solem"

+ 1 - 1
docs/introduction.rst

@@ -2,7 +2,7 @@
  celery - Distributed Task Queue
 =================================
 
-:Version: 0.9.0
+:Version: 0.9.2
 
 Introduction
 ============