Files
Catch2/tools/scripts/patchRelease.py
T

10 lines
196 B
Python
Raw Normal View History

2020-03-19 12:36:30 +01:00
#!/usr/bin/env python3
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
2022-11-06 00:17:51 +01:00
print( "Updated files to v{0}".format( v.getVersionString() ) )