From c3b180028e9c2f74b284ab3557fb6b138725d352 Mon Sep 17 00:00:00 2001 From: Ask Solem Date: Sat, 10 Mar 2012 17:58:27 -0800 Subject: [PATCH] Bumps version to 0.0.5 --- README.rst | 2 +- cyme/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 29e7ae6..fc5e79d 100644 --- a/README.rst +++ b/README.rst @@ -2,7 +2,7 @@ Cyme - Celery instance manager =============================================== -:Version: 0.0.4 +:Version: 0.0.5 :Web: http://celeryproject.org/ :Download: http://pypi.python.org/pypi/cyme/ :Keywords: celery, task queue, job queue, cloud, service diff --git a/cyme/__init__.py b/cyme/__init__.py index b3bdad4..047a7dd 100644 --- a/cyme/__init__.py +++ b/cyme/__init__.py @@ -3,7 +3,7 @@ import os -VERSION = (0, 0, 4) +VERSION = (0, 0, 5) __version__ = ".".join(map(str, VERSION[0:3])) + "".join(VERSION[3:]) __author__ = "Ask Solem"