aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStevan Radaković <stevan.radakovic@linaro.org>2013-04-10 19:00:08 +0200
committerStevan Radaković <stevan.radakovic@linaro.org>2013-04-10 19:00:08 +0200
commitb09cd33cebb08b9bf9c0414afe7c4f29929dd621 (patch)
treeeb67c77fbe6f142f0aeb3c648ec5008cfa1611f3
parentd6a4c2fb892a626f073a7a51d5095eb1402cc2e3 (diff)
Switch to new tag naming scheme.
-rw-r--r--rhodecode/__init__.py2
-rw-r--r--setup.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/rhodecode/__init__.py b/rhodecode/__init__.py
index e3d1b378..b1d44225 100644
--- a/rhodecode/__init__.py
+++ b/rhodecode/__init__.py
@@ -26,7 +26,7 @@
import sys
import platform
-VERSION = (1, 5, 4, 1, "_linaro")
+VERSION = (1, 5, 4, "_linaro1")
try:
from rhodecode.lib import get_current_revision
diff --git a/setup.py b/setup.py
index 3e485540..8d6b5c03 100644
--- a/setup.py
+++ b/setup.py
@@ -22,7 +22,7 @@ _meta = open(os.path.join(here, 'rhodecode', '__init__.py'), 'rb')
_metadata = _meta.read()
_meta.close()
-callback = lambda V: ('.'.join(map(str, V[:3])) + '.'.join(V[3:]))
+callback = lambda V: ('.'.join(map(str, V[:4])) + '.'.join(V[4:]))
__version__ = _get_meta_var('VERSION', _metadata, callback)
__license__ = _get_meta_var('__license__', _metadata)
__author__ = _get_meta_var('__author__', _metadata)