Skip to content

Commit fe69ac0

Browse files
committed
Small fixes
1 parent 490d990 commit fe69ac0

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

docs/development.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ New-DraftRelease -RepositoryName vscode-powershell
8080
# Upload PowerShellEditorServices.zip (for other extensions)
8181
# Upload VSIX and Install-VSCode.ps1
8282
# Publish draft releases and merge (don't squash!) branches
83+
# Check telemetry for stability before releasing
8384
vsce publish --packagePath ./PowerShell-<version>.vsix
8485
# Update Install-VSCode.ps1 on gallery
8586
Publish-Script -Path ./Install-VSCode.ps1 -NuGetApiKey (Get-Secret "PowerShell Gallery API Key" -AsPlainText)

tools/ReleaseTools.psm1

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ function Update-Changelog {
238238
if ($PSCmdlet.ShouldProcess("$RepositoryName/$ChangelogFile", "git")) {
239239
Update-Branch -Version $Version
240240
git add $ChangelogFile
241-
git commit -m "Update CHANGELOG for $Version"
241+
git commit -m "Update CHANGELOG for ``v$Version``"
242242
}
243243

244244
Pop-Location
@@ -324,7 +324,7 @@ function Update-Version {
324324

325325
if ($PSCmdlet.ShouldProcess("$RepositoryName/v$Version", "git commit")) {
326326
Update-Branch -Version $Version
327-
git commit -m "Bump version to v$Version"
327+
git commit -m "Bump version to ``v$Version``"
328328
}
329329

330330
Pop-Location
@@ -350,6 +350,7 @@ function New-DraftRelease {
350350
$ReleaseParams = @{
351351
Draft = $true
352352
Tag = "v$Version"
353+
Committish = "release/v$Version"
353354
Name = "v$Version"
354355
Body = $ChangeLog
355356
PreRelease = [bool]$Version.PreReleaseLabel

0 commit comments

Comments
 (0)