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