[IMP] new version number pattern
authorChristophe Simonis <chs@openerp.com>
Tue, 30 Apr 2013 14:29:38 +0000 (16:29 +0200)
committerChristophe Simonis <chs@openerp.com>
Tue, 30 Apr 2013 14:29:38 +0000 (16:29 +0200)
bzr revid: chs@openerp.com-20130430142938-1wwwhrnmv1r58pe3

openerp/release.py

index e68d90f..3990b1c 100644 (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-1', 0, FINAL, 0)
+version_info = (7, 'saas~1', 0, FINAL, 0)
 version = '.'.join(map(str, version_info[:2])) + RELEASE_LEVELS_DISPLAY[version_info[3]] + str(version_info[4] or '')
 serie = major_version = '.'.join(map(str, version_info[:2]))