https://github.com/philsquared/Catch
Raw File
Tip revision: 74effafca7f446f3e1cdd6a6b1f84d30ce385236 authored by Martin Hořeňovský on 02 March 2018, 20:22:10 UTC
v1.12.1
Tip revision: 74effaf
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