Skip to content
Snippets Groups Projects
Commit b2fc1904 authored by Christophe Simonis's avatar Christophe Simonis
Browse files

[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
parent 065b3c21
No related branches found
No related tags found
No related merge requests found
......@@ -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]))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment