From c177e6d05d31052c31d732e68dfac87a120650bf Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 19 Apr 2008 09:50:14 +0000 Subject: [PATCH] Stop appending the rev to the version number. --- sphinx/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/__init__.py b/sphinx/__init__.py index fdbe0105f..fafda3cd5 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -23,7 +23,7 @@ from sphinx.application import Sphinx from sphinx.util.console import darkred, nocolor __revision__ = '$Revision$' -__version__ = '0.1.' + __revision__[11:-2] +__version__ = '0.2' def usage(argv, msg=None):