We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53a18ad commit ec055f6Copy full SHA for ec055f6
tools/updateVersion.ps1
@@ -20,5 +20,10 @@ $f = $f -replace '^(?<prefix>\s+<ModuleVersion>)(.+)(?<suffix></ModuleVersion>)$
20
$f | Set-Content -Path $Path
21
git add $Path
22
23
-git commit --edit --message v${Version}: $Changes"
24
-"
+$Path = "docs/Cmdlets/PSScriptAnalyzer.md"
+$f = Get-Content -Path $Path
25
+$f = $f -replace '^(?<prefix>Help Version: )(.+)$', "`${prefix}${Version}"
26
+$f | Set-Content -Path $Path
27
+git add $Path
28
+
29
+git commit --edit --message "v${Version}: $Changes"
0 commit comments