summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/catch/scripts/developBuild.py
blob: c16c8a6ddf80bff7c869f1d0e5e78d1e0d5a0697 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env python

from  __future__ import  print_function
from releaseCommon import Version

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

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