Skip to content

Commit e287947

Browse files
Merge pull request #3438 from PowerShell/release/v2021.6.2
Release `v2021.6.2`
2 parents 5e00f8e + 6f20345 commit e287947

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "powershell",
33
"displayName": "PowerShell",
4-
"version": "2021.6.1",
4+
"version": "2021.6.2",
55
"preview": false,
66
"publisher": "ms-vscode",
77
"description": "Develop PowerShell modules, commands and scripts in Visual Studio Code!",

tools/ReleaseTools.psm1

Lines changed: 2 additions & 2 deletions
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)