https://github.com/philsquared/Catch
Raw File
Tip revision: c6535a080e45b08300600c0516e31d0753690ba7 authored by Phil Nash on 01 March 2017, 16:04:44 UTC
v1.8.1 release
Tip revision: c6535a0
minorRelease.py
#!/usr/bin/env python

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