catch2/scripts/patchRelease.py
Uilian Ries ea8908673b #926 Update Conan test version by release
Signed-off-by: Uilian Ries <uilianries@gmail.com>
2017-06-27 15:53:37 -03:00

14 lines
313 B
Python
Executable File

#!/usr/bin/env python
from __future__ import print_function
from releaseCommon import Version
v = Version()
v.incrementPatchNumber()
v.updateVersionFile()
v.updateReadmeFile()
v.updateConanFile()
v.updateConanTestFile()
print( "Updated Version.hpp, README and Conan to v{0}".format( v.getVersionString() ) )