Skip to content

Commit 2025016

Browse files
Merge pull request #3503 from PowerShell/release
Release `v2021.8.0`
2 parents c71e5e6 + fc08686 commit 2025016

File tree

3 files changed

+32
-6
lines changed

3 files changed

+32
-6
lines changed

.markdownlint.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"MD013": false,
3+
"MD033": false,
4+
"MD022": false,
5+
"MD024": false
6+
}

CHANGELOG.md

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

3+
## v2021.8.0
4+
### Monday, August 09, 2021
5+
6+
The first stable release since [v2021.6.2](#v202162), this release includes all the
7+
changes from [v2021.8.0-preview](#v202180-preview) and
8+
[v2021.7.0-preview](#v202170-preview) (see below). While the highlights are listed here,
9+
[please read our blog post](https://devblogs.microsoft.com/powershell/powershell-for-visual-studio-code-august-2021-update/)
10+
for the full story!
11+
12+
#### [vscode-powershell](https://github.com/PowerShell/vscode-powershell)
13+
14+
- ✨ 📺 [vscode-powershell #3422](https://github.com/PowerShell/vscode-powershell/pull/3493) - Update extension icon (and use a special preview icon).
15+
- ✨ 👷 [vscode-powershell #2286](https://github.com/PowerShell/vscode-powershell/pull/3461) - Pipeline-ify entire release process.
16+
17+
#### [PowerShellEditorServices](https://github.com/PowerShell/PowerShellEditorServices)
18+
19+
- ✨ 🔍 [PowerShellEditorServices #1533](https://github.com/PowerShell/PowerShellEditorServices/pull/1533) - Enable and fix many .NET Code Analysis warnings.
20+
- ✨ 👷 [PowerShellEditorServices #1528](https://github.com/PowerShell/PowerShellEditorServices/pull/1528) - Automate entire release process.
21+
- ✨ 🙏 [PowerShellEditorServices #1493](https://github.com/PowerShell/PowerShellEditorServices/pull/1514) - Load only bundled `PSReadLine`.
22+
- 🐛 👷 [PowerShellEditorServices #1513](https://github.com/PowerShell/PowerShellEditorServices/pull/1513) - Import `InvokePesterStub.ps1` from `vscode-powershell` (with history).
23+
324
## v2021.8.0-preview
425
### Tuesday, August 03, 2021
526

@@ -16,7 +37,6 @@
1637
- ✨ 🛫 [PowerShellEditorServices #1527](https://github.com/PowerShell/PowerShellEditorServices/pull/1527) - Add stack trace to resolve event handler on debug.
1738
- ✨ 🛫 [PowerShellEditorServices #1523](https://github.com/PowerShell/PowerShellEditorServices/pull/1526) - Initialize runspaces with `InitialSessionState` object.
1839

19-
2040
## v2021.7.0-preview
2141
### Thursday, July 15, 2021
2242

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"name": "powershell-preview",
3-
"displayName": "PowerShell Preview",
2+
"name": "powershell",
3+
"displayName": "PowerShell",
44
"version": "2021.8.0",
5-
"preview": true,
5+
"preview": false,
66
"publisher": "ms-vscode",
7-
"description": "(Preview) Develop PowerShell modules, commands and scripts in Visual Studio Code!",
7+
"description": "Develop PowerShell modules, commands and scripts in Visual Studio Code!",
88
"engines": {
99
"vscode": "^1.53.0"
1010
},
@@ -16,7 +16,7 @@
1616
"Snippets",
1717
"Linters"
1818
],
19-
"icon": "media/PowerShell_Preview_Icon.png",
19+
"icon": "media/PowerShell_Icon.png",
2020
"galleryBanner": {
2121
"color": "#ACD1EC",
2222
"theme": "light"

0 commit comments

Comments
 (0)