2015-09-12 15:39:36 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
|
|
|
def new_version(ver):
|
2015-09-12 15:42:03 +02:00
|
|
|
os.system("git tag -f v%s" % ver)
|
2016-09-10 19:20:20 +02:00
|
|
|
os.system("git push --tags")
|
2015-09-12 15:39:36 +02:00
|
|
|
|
|
|
|
new_version(sys.argv[1])
|