https://github.com/philsquared/Catch
Raw File
Tip revision: fc495ba0cbea0d935436ecc94ab32ea1db8e00c9 authored by Martin Hořeňovský on 30 August 2017, 10:20:21 UTC
Dev build 3
Tip revision: fc495ba
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