https://github.com/philsquared/Catch
Raw File
Tip revision: c1ca0fdabe8def3e67d42b275d51ac383fd5819f authored by Phil Nash on 03 July 2015, 17:30:25 UTC
dev build 3
Tip revision: c1ca0fd
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