10 lines
197 B
Python
Executable file
10 lines
197 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
import releaseCommon
|
|
|
|
v = releaseCommon.Version()
|
|
v.incrementMajorVersion()
|
|
releaseCommon.performUpdates(v)
|
|
|
|
print( "Updated files to v{0}".format( v.getVersionString() ) )
|