Skip to content

Commit 290e0eb

Browse files
committed
Update CHANGELOG for v2021.6.2
1 parent 5e00f8e commit 290e0eb

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# PowerShell Extension Release History
22

3+
## v2021.6.2
4+
### Thursday, June 24, 2021
5+
6+
#### [vscode-powershell](https://github.com/PowerShell/vscode-powershell)
7+
8+
- 👷🐛 [vscode-powershell #2536](https://github.com/PowerShell/vscode-powershell/pull/3431) - Release refinements.
9+
10+
#### [PowerShellEditorServices](https://github.com/PowerShell/PowerShellEditorServices)
11+
12+
- 👷🐛 [PowerShellEditorServices #1509](https://github.com/PowerShell/PowerShellEditorServices/issues/1509) Fix signing of files in release.
13+
14+
315
## v2021.6.1
416
### Monday, June 21, 2021
517

tools/ReleaseTools.psm1

+2-2
Original file line numberDiff line numberDiff line change
@@ -236,9 +236,9 @@ function Update-Changelog {
236236
) | Set-Content -Encoding utf8NoBOM -Path $ChangelogFile
237237

238238
if ($PSCmdlet.ShouldProcess("$RepositoryName/$ChangelogFile", "git")) {
239-
Update-Branch -Version $Version
239+
Update-Branch -Version $Version.Substring(1) # Has "v" prefix
240240
git add $ChangelogFile
241-
git commit -m "Update CHANGELOG for ``v$Version``"
241+
git commit -m "Update CHANGELOG for ``$Version``"
242242
}
243243

244244
Pop-Location

0 commit comments

Comments
 (0)