Skip to content

Commit 9fca458

Browse files
Rev to version 1.12 (#1806)
* Rev to version 1.12 * PowerShell was changed to powershell
1 parent 94ac0bd commit 9fca458

File tree

6 files changed

+11
-8
lines changed

6 files changed

+11
-8
lines changed

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: '1.11.0-insiders-{build}'
1+
version: '1.12.0-insiders-{build}'
22
image: Visual Studio 2017
33
clone_depth: 10
44
skip_tags: true

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "powershell",
33
"displayName": "PowerShell",
4-
"version": "1.11.0",
4+
"version": "1.12.0",
55
"publisher": "ms-vscode",
66
"description": "Develop PowerShell scripts in Visual Studio Code!",
77
"engines": {
@@ -454,7 +454,10 @@
454454
"default": null
455455
},
456456
"runspaceId": {
457-
"type":["string","number"],
457+
"type": [
458+
"string",
459+
"number"
460+
],
458461
"description": "Optional: The ID of the runspace to debug in the attached process. Defaults to 1. Works only on PowerShell 5 and above.",
459462
"default": null
460463
},

src/main.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import utils = require("./utils");
3737

3838
// NOTE: We will need to find a better way to deal with the required
3939
// PS Editor Services version...
40-
const requiredEditorServicesVersion = "1.11.0";
40+
const requiredEditorServicesVersion = "1.12.0";
4141

4242
let logger: Logger;
4343
let sessionManager: SessionManager;

tools/releaseBuild/Image/DockerFile

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ COPY build.ps1 containerFiles/build.ps1
2323

2424
# Add an environment variable for build versioning
2525
ENV VSTS_BUILD=1
26-
ENV VSTS_BUILD_VERSION=1.11.0
26+
ENV VSTS_BUILD_VERSION=1.12.0
2727

2828
# Uncomment to debug locally
2929
# RUN Import-Module ./containerFiles/dockerInstall.psm1; `

vscode-powershell.build.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ task Package {
127127
exec { & node ./node_modules/vsce/out/vsce package }
128128

129129
# Change the package to have a static name for automation purposes
130-
Move-Item -Force .\PowerShell-$($script:ExtensionVersion).vsix .\PowerShell-insiders.vsix
130+
Move-Item -Force .\powershell-$($script:ExtensionVersion).vsix .\PowerShell-insiders.vsix
131131
}
132132

133133
task UploadArtifacts -If { $env:AppVeyor } {

0 commit comments

Comments
 (0)