aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/catch2/tools/scripts/patchRelease.py
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/catch2/tools/scripts/patchRelease.py')
-rwxr-xr-xcontrib/catch2/tools/scripts/patchRelease.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/contrib/catch2/tools/scripts/patchRelease.py b/contrib/catch2/tools/scripts/patchRelease.py
new file mode 100755
index 0000000..48256c1
--- /dev/null
+++ b/contrib/catch2/tools/scripts/patchRelease.py
@@ -0,0 +1,9 @@
+#!/usr/bin/env python3
+
+import releaseCommon
+
+v = releaseCommon.Version()
+v.incrementPatchNumber()
+releaseCommon.performUpdates(v)
+
+print( "Updated files to v{0}".format( v.getVersionString() ) )