Files
Catch2/scripts/developBuild.py
T

14 lines
313 B
Python
Raw Normal View History

#!/usr/bin/env python
2015-06-29 18:05:23 +01:00
from __future__ import print_function
from releaseCommon import Version
v = Version()
v.incrementBuildNumber()
v.updateVersionFile()
v.updateReadmeFile()
2017-06-23 11:06:49 -03:00
v.updateConanFile()
2017-06-27 11:03:27 -03:00
v.updateConanTestFile()
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() ) )