Skip to content

Release v2021.6.2 #3438

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 24, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# PowerShell Extension Release History

## v2021.6.2
### Thursday, June 24, 2021

#### [vscode-powershell](https://github.com/PowerShell/vscode-powershell)

- 👷🐛 [vscode-powershell #2536](https://github.com/PowerShell/vscode-powershell/pull/3431) - Release refinements.

#### [PowerShellEditorServices](https://github.com/PowerShell/PowerShellEditorServices)

- 👷🐛 [PowerShellEditorServices #1509](https://github.com/PowerShell/PowerShellEditorServices/issues/1509) Fix signing of files in release.


## v2021.6.1
### Monday, June 21, 2021

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "powershell",
"displayName": "PowerShell",
"version": "2021.6.1",
"version": "2021.6.2",
"preview": false,
"publisher": "ms-vscode",
"description": "Develop PowerShell modules, commands and scripts in Visual Studio Code!",
Expand Down
4 changes: 2 additions & 2 deletions tools/ReleaseTools.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -236,9 +236,9 @@ function Update-Changelog {
) | Set-Content -Encoding utf8NoBOM -Path $ChangelogFile

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

Pop-Location
Expand Down