diff --git a/appveyor.yml b/appveyor.yml index af1ba551bc..e590e38028 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: '1.8.3-insiders-{build}' +version: '1.8.4-insiders-{build}' image: Visual Studio 2017 clone_depth: 10 skip_tags: true diff --git a/package.json b/package.json index 18db2a2f0a..d607a9552f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "PowerShell", "displayName": "PowerShell", - "version": "1.8.3", + "version": "1.8.4", "publisher": "ms-vscode", "description": "Develop PowerShell scripts in Visual Studio Code!", "engines": { diff --git a/src/main.ts b/src/main.ts index 3cc6fea653..5736ad18be 100644 --- a/src/main.ts +++ b/src/main.ts @@ -36,7 +36,7 @@ import utils = require("./utils"); // NOTE: We will need to find a better way to deal with the required // PS Editor Services version... -const requiredEditorServicesVersion = "1.8.3"; +const requiredEditorServicesVersion = "1.8.4"; let logger: Logger; let sessionManager: SessionManager; diff --git a/tools/releaseBuild/Image/DockerFile b/tools/releaseBuild/Image/DockerFile index daae3b61b2..781feb2942 100644 --- a/tools/releaseBuild/Image/DockerFile +++ b/tools/releaseBuild/Image/DockerFile @@ -23,7 +23,7 @@ COPY build.ps1 containerFiles/build.ps1 # Add an environment variable for build versioning ENV VSTS_BUILD=1 -ENV VSTS_BUILD_VERSION=1.8.3 +ENV VSTS_BUILD_VERSION=1.8.4 # Uncomment to debug locally # RUN Import-Module ./containerFiles/dockerInstall.psm1; `