change the release naming scheme

This commit is contained in:
Enno Rehling 2015-09-12 15:42:03 +02:00
parent 17342b7c5d
commit 8f00d5293f
1 changed files with 1 additions and 1 deletions

View File

@ -16,6 +16,6 @@ def new_version(ver):
file.close()
os.system("git add src/buildno.h")
os.system("git commit -m 'release version %s'" % ver)
os.system("git tag -f version-%s" % ver)
os.system("git tag -f v%s" % ver)
new_version(sys.argv[1])