https://github.com/philsquared/Catch
Raw File
Tip revision: 355ab78f4a89736171d34d6ce271aa36a0ce155d authored by Phil Nash on 12 October 2017, 12:06:41 UTC
dev build 5
Tip revision: 355ab78
minorRelease.py
#!/usr/bin/env python

from  __future__ import  print_function
import releaseCommon

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

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