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