Skip to content

Commit 61caa7f

Browse files
authored
Changelog for 1.10.1 (#1643)
1 parent d7b2096 commit 61caa7f

File tree

6 files changed

+15
-5
lines changed

6 files changed

+15
-5
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# vscode-powershell Release History
22

3+
## v1.10.1
4+
### Friday, December 7, 2018
5+
6+
#### [PowerShellEditorServices](https://github.com/PowerShell/PowerShellEditorServices)
7+
8+
- [PowerShellEditorServices #808](https://github.com/PowerShell/PowerShellEditorServices/pull/808) -
9+
Fix startup crash on Windows 7
10+
- [PowerShellEditorServices #807](https://github.com/PowerShell/PowerShellEditorServices/pull/807) -
11+
Fix deadlock occurring while connecting to named pipes
12+
313
## v1.10.0
414
### Monday, December 3, 2018
515
#### [vscode-powershell](https://github.com/PowerShell/vscode-powershell)

appveyor.yml

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

package-lock.json

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

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "PowerShell",
33
"displayName": "PowerShell",
4-
"version": "1.10.0",
4+
"version": "1.10.1",
55
"publisher": "ms-vscode",
66
"description": "Develop PowerShell scripts in Visual Studio Code!",
77
"engines": {

src/main.ts

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

3737
// NOTE: We will need to find a better way to deal with the required
3838
// PS Editor Services version...
39-
const requiredEditorServicesVersion = "1.10.0";
39+
const requiredEditorServicesVersion = "1.10.1";
4040

4141
let logger: Logger;
4242
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.10.0
26+
ENV VSTS_BUILD_VERSION=1.10.1
2727

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

0 commit comments

Comments
 (0)