add a release-tagging script

This commit is contained in:
Enno Rehling 2015-09-12 15:39:36 +02:00
parent 3f39569710
commit 17342b7c5d
1 changed files with 21 additions and 0 deletions

21
s/release Executable file
View File

@ -0,0 +1,21 @@
#!/usr/bin/env python
import os
import sys
template="""#define VERSION_MAJOR %s
#define VERSION_MINOR %s
#define VERSION_BUILD %s
"""
def new_version(ver):
sp = ver.split(".")
sp = (sp[0], sp[1], sp[2])
file = open("src/buildno.h", "w")
file.write(template % sp)
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)
new_version(sys.argv[1])