Files
Catch2/tools/scripts/developBuild.py
T

11 lines
260 B
Python
Raw Normal View History

2020-03-19 12:36:30 +01:00
#!/usr/bin/env python3
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.incrementBuildNumber()
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() ) )