##// END OF EJS Templates
bump version of development
marcink -
r3702:a79bb327 beta
parent child Browse files
Show More
@@ -26,13 +26,13 b''
26 import sys
26 import sys
27 import platform
27 import platform
28
28
29 VERSION = (1, 6, 0, 'rc1')
29 VERSION = (1, 7, 0, 'dev')
30
30
31 try:
31 try:
32 from rhodecode.lib import get_current_revision
32 from rhodecode.lib import get_current_revision
33 _rev = get_current_revision()
33 _rev = get_current_revision()
34 if _rev and len(VERSION) > 3:
34 if _rev and len(VERSION) > 3:
35 VERSION += ('dev%s' % _rev[0],)
35 VERSION += ('%s' % _rev[0],)
36 except ImportError:
36 except ImportError:
37 pass
37 pass
38
38
General Comments 0
You need to be logged in to leave comments. Login now