We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1aa6fa2 commit 900a6d5Copy full SHA for 900a6d5
tools/scripts/releaseCommon.py
@@ -114,7 +114,7 @@ def updateVersionDefine(version):
114
def updateVersionPlaceholder(filename, version):
115
with open(filename, 'rb') as file:
116
lines = file.readlines()
117
- placeholderRegex = re.compile(b'Catch[0-9]? X.Y.Z')
+ placeholderRegex = re.compile(b'Catch[0-9]? v?X.Y.Z')
118
replacement = 'Catch2 {}.{}.{}'.format(version.majorVersion, version.minorVersion, version.patchNumber).encode('ascii')
119
with open(filename, 'wb') as file:
120
for line in lines:
0 commit comments