1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-09-06 05:08:42 +02:00

version 0.6

This commit is contained in:
Dr. Peter Poeml
2006-05-30 10:31:25 +00:00
parent 9557d10177
commit 537d6b62cc
3 changed files with 11 additions and 3 deletions

View File

@@ -5,7 +5,7 @@
# and distributed under the terms of the GNU General Public Licence,
# either version 2, or (at your option) any later version.
__version__ = '0.5'
__version__ = '0.6'
import os
import sys
@@ -571,7 +571,7 @@ def check_store_version(dir):
sys.exit(1)
if v != __version__:
if v == '0.2' or v == '0.3' or v == '0.4':
if v in ['0.2', '0.3', '0.4', '0.5']:
# version is fine, no migration needed
f = open(versionfile, 'w')
f.write(__version__ + '\n')