Selaa lähdekoodia

Bumped version to 1.0.4

Ask Solem 15 vuotta sitten
vanhempi
commit
e93813c72e
5 muutettua tiedostoa jossa 5 lisäystä ja 5 poistoa
  1. 1 1
      README.rst
  2. 1 1
      celery/__init__.py
  3. 1 1
      contrib/requirements/default.txt
  4. 1 1
      docs/includes/introduction.txt
  5. 1 1
      setup.py

+ 1 - 1
README.rst

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

+ 1 - 1
celery/__init__.py

@@ -1,6 +1,6 @@
 """Distributed Task Queue"""
 
-VERSION = (1, 0, 3)
+VERSION = (1, 0, 4)
 
 __version__ = ".".join(map(str, VERSION[0:3])) + "".join(VERSION[3:])
 __author__ = "Ask Solem"

+ 1 - 1
contrib/requirements/default.txt

@@ -3,4 +3,4 @@ python-dateutil
 anyjson
 carrot>=0.10.4
 django-picklefield
-billiard>=0.3.0
+billiard>=0.3.1

+ 1 - 1
docs/includes/introduction.txt

@@ -1,6 +1,6 @@
 .. image:: http://cloud.github.com/downloads/ask/celery/celery_favicon_128.png
 
-:Version: 1.0.3
+:Version: 1.0.4
 :Web: http://celeryproject.org/
 :Download: http://pypi.python.org/pypi/celery/
 :Source: http://github.com/ask/celery/

+ 1 - 1
setup.py

@@ -65,7 +65,7 @@ install_requires.extend([
     "anyjson",
     "carrot>=0.10.4",
     "django-picklefield",
-    "billiard>=0.3.0"])
+    "billiard>=0.3.1"])
 
 py_version = sys.version_info
 if sys.version_info <= (2, 5):