aboutsummaryrefslogtreecommitdiff
path: root/scripts/patchRelease.py
blob: 6abf87af15278973fb1d6d5ccf5f562dc382b96d (plain)
1
2
3
4
5
6
7
8
9
from  __future__ import  print_function
from releaseCommon import Version

v = Version()
v.incrementPatchNumber()
v.updateVersionFile()
v.updateReadmeFile()

print( "Updated Version.hpp and README to v{0}".format( v.getVersionString() ) )