Files
Catch2/scripts/patchRelease.py
T

11 lines
259 B
Python
Raw Permalink Normal View History

#!/usr/bin/env python
2015-06-29 18:05:23 +01:00
from __future__ import print_function
import releaseCommon
2015-06-29 18:05:23 +01:00
v = releaseCommon.Version()
2015-06-29 18:05:23 +01:00
v.incrementPatchNumber()
releaseCommon.performUpdates(v)
2015-06-29 18:05:23 +01:00
2017-06-23 11:06:49 -03:00
print( "Updated Version.hpp, README and Conan to v{0}".format( v.getVersionString() ) )