[FIX] release.py: correct version number (wrongly forward-ported from saas-4)

lp bug: https://launchpad.net/bugs/1278411 fixed

bzr revid: chs@openerp.com-20140428093924-2aq3zomkbxv31iu0
This commit is contained in:
Christophe Simonis 2014-04-28 11:39:24 +02:00
parent 065b3c2176
commit b2fc19045b
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ RELEASE_LEVELS_DISPLAY = {ALPHA: ALPHA,
# properly comparable using normal operarors, for example:
# (6,1,0,'beta',0) < (6,1,0,'candidate',1) < (6,1,0,'candidate',2)
# (6,1,0,'candidate',2) < (6,1,0,'final',0) < (6,1,2,'final',0)
version_info = (7, 'saas~4', 0, FINAL, 0)
version_info = (8, 0, 0, ALPHA, 1)
version = '.'.join(map(str, version_info[:2])) + RELEASE_LEVELS_DISPLAY[version_info[3]] + str(version_info[4] or '')
series = serie = major_version = '.'.join(map(str, version_info[:2]))