Skip to content

Commit 1ab5a22

Browse files
Merge pull request #3271 from PowerShell/release/v2021.4.1-preview
Update CHANGELOG for v2021.4.1-preview
2 parents 473effd + 1499865 commit 1ab5a22

File tree

3 files changed

+24
-3
lines changed

3 files changed

+24
-3
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# PowerShell Extension Release History
22

3+
## v2021.4.1-preview
4+
### Friday, April 02, 2021
5+
6+
#### [vscode-powershell](https://github.com/PowerShell/vscode-powershell)
7+
8+
- 👷🐛 [vscode-powershell #3267](https://github.com/PowerShell/vscode-powershell/pull/3267) - Update download host of vscode. (Thanks @thosoo!)
9+
- 👷✨ [vscode-powershell #3195](https://github.com/PowerShell/vscode-powershell/pull/3265) - Create new `ReleaseTools` module.
10+
- 📺✨ [vscode-powershell #3236](https://github.com/PowerShell/vscode-powershell/pull/3237) - Use title case and shorter notification text. (Thanks @Tyriar!)
11+
- 🚨🐛 [vscode-powershell #3208](https://github.com/PowerShell/vscode-powershell/pull/3222) - Fix hardcoded extension name string.
12+
- 📖🐛 [vscode-powershell #3049](https://github.com/PowerShell/vscode-powershell/pull/3214) - Update examples-module to use Pester 5. (Thanks @nickkimbrough!)
13+
- 🐛 [vscode-powershell #3209](https://github.com/PowerShell/vscode-powershell/pull/3212) - Remove the rest of the experimental Notebook API.
14+
- 👷 [vscode-powershell #3178](https://github.com/PowerShell/vscode-powershell/pull/3207) - Update powershell CHANGELOG for v2021.2.2.
15+
16+
#### [PowerShellEditorServices](https://github.com/PowerShell/PowerShellEditorServices)
17+
18+
- 🧠✨ [PowerShellEditorServices #1176](https://github.com/PowerShell/PowerShellEditorServices/pull/1427) - Add '$' as trigger character for completion. (Thanks @MartinGC94!)
19+
- 👷🚨✨ [PowerShellEditorServices #1426](https://github.com/PowerShell/PowerShellEditorServices/pull/1426) - Bump CI images and enable tests on Apple M1.
20+
-[PowerShellEditorServices #1424](https://github.com/PowerShell/PowerShellEditorServices/pull/1424) - Update to use OmniSharp 0.19.0.
21+
- #️⃣ 🙏 [PowerShellEditorServices #1418](https://github.com/PowerShell/PowerShellEditorServices/pull/1418) - Update CHANGELOG for v2.3.0.
22+
- #️⃣ 🙏 [vscode-powershell #3180](https://github.com/PowerShell/PowerShellEditorServices/pull/1411) - Fix New-EditorFile failing when no Editor window open. (Thanks @corbob!)
23+
324
## v2021.2.2
425
### Wednesday, February 24, 2021
526
#### [vscode-PowerShell](https://github.com/PowerShell/vscode-PowerShell)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "powershell-preview",
33
"displayName": "PowerShell Preview",
4-
"version": "2021.2.3",
4+
"version": "2021.4.1",
55
"preview": true,
66
"publisher": "ms-vscode",
77
"description": "(Preview) Develop PowerShell scripts in Visual Studio Code!",

tools/ReleaseTools.psm1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,7 @@ function New-DraftRelease {
220220
[ValidateSet([RepoNames])]
221221
[string]$RepositoryName
222222
)
223+
# TODO: Abstract this to return version components and reuse in `Update-Version`.
223224
$Changelog = (Get-NewChangelog -RepositoryName $RepositoryName) -join "`n"
224225
$Version = if ($Changelog -match '## (?<version>v\S+)') {
225226
$Matches.version
@@ -230,8 +231,7 @@ function New-DraftRelease {
230231
Name = $Version
231232
Body = $ChangeLog
232233
PreRelease = $Version -match '-preview'
233-
Confirm = $Confirm
234-
WhatIf = $WhatIf
234+
# TODO: Pass -WhatIf and -Confirm parameters correctly.
235235
}
236236
Get-GitHubRepository -OwnerName PowerShell -RepositoryName $RepositoryName |
237237
New-GitHubRelease @ReleaseParams

0 commit comments

Comments
 (0)