fix: update version placeholder format in README files for consistency

This commit is contained in:
Ivan 2026-08-14 15:53:36 -05:00
parent eb3b0be470
commit 2880d1ae1c
No known key found for this signature in database
3 changed files with 2 additions and 2 deletions

View file

@ -80,7 +80,7 @@ function patchFile(rel, fn) {
}
}
patchFile("README.md", (c) => c.replace(/(Current version in this repo is `)[^`]+(`)/, `$1${version}$2`));
patchFile("README.md", (c) => c.replace(/(Current version is )\d+\.\d+\.\d+/, `$1${version}`));
patchFile("lang/README.de.md", (c) =>
c.replace(/(Aktuelle Version in diesem Repository: `)[^`]+(`)/, `$1${version}$2`)