https://github.com/philsquared/Catch
Raw File
Tip revision: d63307279412de3870cf97cc6802bae8ab36089e authored by Martin Hořeňovský on 07 March 2019, 20:44:57 UTC
v2.7.0
Tip revision: d633072
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