https://github.com/philsquared/Catch
Raw File
Tip revision: ae5ee2cf63d6d67bd1369b512d2a7b60b571c907 authored by Phil Nash on 29 February 2016, 08:17:18 UTC
v1.3.5
Tip revision: ae5ee2c
minorRelease.py
from  __future__ import  print_function
from releaseCommon import Version

v = Version()
v.incrementMinorVersion()
v.updateVersionFile()
v.updateReadmeFile()

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