https://github.com/philsquared/Catch
Raw File
Tip revision: 981347b6e432007882fd59f9a498c363a3b39ec0 authored by Phil Nash on 09 December 2015, 18:11:48 UTC
patch build to include last two fixes
Tip revision: 981347b
developBuild.py
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() ) )
back to top