https://github.com/philsquared/Catch
Raw File
Tip revision: f4ba8aaf194beeadea92a00808db6fa0c9d50773 authored by Phil Nash on 15 December 2015, 07:54:49 UTC
dev build 2
Tip revision: f4ba8aa
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