https://github.com/philsquared/Catch
Raw File
Tip revision: cd76f5730c9a3afa19f3b9c83608d9c7ab325a19 authored by Martin Hořeňovský on 10 January 2018, 12:53:04 UTC
v2.1.0
Tip revision: cd76f57
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