catch2/scripts/patchRelease.py

13 lines
289 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()
print( "Updated Version.hpp, README and Conan to v{0}".format( v.getVersionString() ) )