blob: bbd97ed042ec86de87e0a73f29dc1cc95ef4034e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
from __future__ import print_function
from releaseCommon import Version
v = Version()
v.incrementMinorVersion()
v.updateVersionFile()
v.updateReadmeFile()
print( "Updated Version.hpp and README to v{0}".format( v.getVersionString() ) )
|