aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rhodecode/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/rhodecode/__init__.py b/rhodecode/__init__.py
index 1fc5e69a..e3d1b378 100644
--- a/rhodecode/__init__.py
+++ b/rhodecode/__init__.py
@@ -26,7 +26,7 @@
import sys
import platform
-VERSION = (1, 5, 4)
+VERSION = (1, 5, 4, 1, "_linaro")
try:
from rhodecode.lib import get_current_revision
@@ -36,8 +36,8 @@ try:
except ImportError:
pass
-__version__ = ('.'.join((str(each) for each in VERSION[:3])) +
- '.'.join(VERSION[3:]))
+__version__ = ('.'.join((str(each) for each in VERSION[:4])) +
+ '.'.join(VERSION[4:]))
__dbversion__ = 10 # defines current db version for migrations
__platform__ = platform.system()
__license__ = 'GPLv3'