changeset 3702:a79bb3277b32 beta

bump version of development
author Marcin Kuzminski <marcin@python-works.com>
date Sun, 07 Apr 2013 19:05:35 +0200
parents 8155dd1837ff
children 4839bc1d89fa
files rhodecode/__init__.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/rhodecode/__init__.py	Sun Apr 07 18:42:41 2013 +0200
+++ b/rhodecode/__init__.py	Sun Apr 07 19:05:35 2013 +0200
@@ -26,13 +26,13 @@
 import sys
 import platform
 
-VERSION = (1, 6, 0, 'rc1')
+VERSION = (1, 7, 0, 'dev')
 
 try:
     from rhodecode.lib import get_current_revision
     _rev = get_current_revision()
     if _rev and len(VERSION) > 3:
-        VERSION += ('dev%s' % _rev[0],)
+        VERSION += ('%s' % _rev[0],)
 except ImportError:
     pass