https://github.com/philsquared/Catch
Raw File
Tip revision: 6b22e7ac805ad0575c9149b616e39c771e40c2ee authored by Torfinn Berset on 14 January 2019, 11:46:18 UTC
Added Bloomlife to list of commercial users
Tip revision: 6b22e7a
developBuild.py
#!/usr/bin/env python

from  __future__ import  print_function
import releaseCommon

v = releaseCommon.Version()
v.incrementBuildNumber()
releaseCommon.performUpdates(v)

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