blob: 8837770cadb6f41ceafc61767b37ce211bd331fb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#!/usr/bin/env python3
import releaseCommon
v = releaseCommon.Version()
v.incrementBuildNumber()
releaseCommon.performUpdates(v)
print( "Updated files to v{0}".format( v.getVersionString() ) )
|