https://github.com/philsquared/Catch
Raw File
Tip revision: 15cf3caaceb21172ea42a24e595a2eb58c3ec960 authored by Martin Hořeňovský on 23 July 2018, 08:12:15 UTC
v2.3.0
Tip revision: 15cf3ca
patchRelease.py
#!/usr/bin/env python

from  __future__ import  print_function
import releaseCommon

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

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