Skip to content

Commit 9b282b1

Browse files
committed
Bump to v2021.2.3-preview
This reverts the changes necessary to make it a "stable" release. Hence we're back to preview with a new (not yet released) version.
1 parent a5b0ac7 commit 9b282b1

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"args": [
4040
"--disable-extensions",
4141
"--enable-proposed-api",
42-
"ms-vscode.powershell",
42+
"ms-vscode.powershell-preview",
4343
"--extensionDevelopmentPath=${workspaceFolder}",
4444
"--extensionTestsPath=${workspaceFolder}/out/test/testRunner.js",
4545
"${workspaceFolder}/test"

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"name": "powershell",
3-
"displayName": "PowerShell",
4-
"version": "2021.2.2",
5-
"preview": false,
2+
"name": "powershell-preview",
3+
"displayName": "PowerShell Preview",
4+
"version": "2021.2.3",
5+
"preview": true,
66
"publisher": "ms-vscode",
7-
"description": "Develop PowerShell scripts in Visual Studio Code!",
7+
"description": "(Preview) Develop PowerShell scripts in Visual Studio Code!",
88
"engines": {
99
"vscode": "^1.52.0"
1010
},

test/features/ExternalApi.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import * as vscode from "vscode";
66
import { before, beforeEach, afterEach } from "mocha";
77
import { IExternalPowerShellDetails, IPowerShellExtensionClient } from "../../src/features/ExternalApi";
88

9-
const testExtensionId = "ms-vscode.powershell";
9+
const testExtensionId = "ms-vscode.powershell-preview";
1010

1111
suite("ExternalApi feature - Registration API", () => {
1212
let powerShellExtensionClient: IPowerShellExtensionClient;
@@ -82,7 +82,7 @@ suite("ExternalApi feature - Other APIs", () => {
8282
});
8383

8484
beforeEach(() => {
85-
sessionId = powerShellExtensionClient.registerExternalExtension("ms-vscode.powershell");
85+
sessionId = powerShellExtensionClient.registerExternalExtension("ms-vscode.powershell-preview");
8686
});
8787

8888
afterEach(() => {

test/runTests.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ async function main() {
2222
extensionTestsPath,
2323
launchArgs: [
2424
"--disable-extensions",
25-
"--enable-proposed-api", "ms-vscode.powershell",
25+
"--enable-proposed-api", "ms-vscode.powershell-preview",
2626
"./test"
2727
],
2828
version: "insiders"

0 commit comments

Comments
 (0)