summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/sol2/Catch/scripts/minorRelease.py
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/sol2/Catch/scripts/minorRelease.py')
-rw-r--r--3rdparty/sol2/Catch/scripts/minorRelease.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/3rdparty/sol2/Catch/scripts/minorRelease.py b/3rdparty/sol2/Catch/scripts/minorRelease.py
new file mode 100644
index 00000000000..bbd97ed042e
--- /dev/null
+++ b/3rdparty/sol2/Catch/scripts/minorRelease.py
@@ -0,0 +1,9 @@
+from __future__ import print_function
+from releaseCommon import Version
+
+v = Version()
+v.incrementMinorVersion()
+v.updateVersionFile()
+v.updateReadmeFile()
+
+print( "Updated Version.hpp and README to v{0}".format( v.getVersionString() ) ) \ No newline at end of file