From f280758b9aee06fb5509a0b29662df883f623fbf Mon Sep 17 00:00:00 2001 From: Alberto Paro Date: Wed, 27 Aug 2014 23:26:42 +0200 Subject: [PATCH] Releases 0.99.5 --- pyes/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyes/__init__.py b/pyes/__init__.py index 569dcab0..d9f23483 100644 --- a/pyes/__init__.py +++ b/pyes/__init__.py @@ -4,7 +4,7 @@ logger = logging.getLogger(__name__) -VERSION = (0, 99, 5, "dev") +VERSION = (0, 99, 5) __version__ = ".".join(map(str, VERSION[0:3])) + "".join(VERSION[3:]) __author__ = "Alberto Paro"