Skip to content

Commit 4914f65

Browse files
prep for 1.6.0 release (#1206)
1 parent b1b23e7 commit 4914f65

File tree

4 files changed

+47
-3
lines changed

4 files changed

+47
-3
lines changed

Diff for: CHANGELOG.md

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

3+
## 1.6.0
4+
### Thursday, February 22, 2018
5+
6+
#### Fixes and Improvements
7+
8+
- [PowerShell/vscode-powershell #907](https://github.com/PowerShell/vscode-powershell/issues/907) -
9+
Persist temp console debug session.
10+
11+
- [PowerShell/vscode-powershell #1198](https://github.com/PowerShell/vscode-powershell/pull/1198) -
12+
Enhance Start-EditorServices.ps1 for better logging and fix bugs.
13+
14+
- [PowerShell/PowerShellEditorServices #413](https://github.com/PowerShell/PowerShellEditorServices/issues/413) -
15+
Allow opening files as not previews to allow Open-EditorFile to open multiple files passed in.
16+
17+
- [PowerShell/vscode-powershell #1177](https://github.com/PowerShell/vscode-powershell/issues/1177) -
18+
Add function-advanced snippet. Thanks to [Benny1007](https://github.com/Benny1007)!
19+
20+
- [PowerShell/vscode-powershell #1179](https://github.com/PowerShell/vscode-powershell/issues/1179) -
21+
Switch onDebug to onDebugResolve:type for better debugging perf.
22+
23+
- [PowerShell/vscode-powershell #1086](https://github.com/PowerShell/vscode-powershell/issues/1086) -
24+
Add tslint to vscode-powershell and address all issues.
25+
26+
- [PowerShell/vscode-powershell #1153](https://github.com/PowerShell/vscode-powershell/issues/1153) -
27+
Add docs for ps remoting in vscode.
28+
29+
- [PowerShell/vscode-powershell #1161](https://github.com/PowerShell/vscode-powershell/pull/1161) -
30+
Check for the expected version of the PowerShell Editor Services module fails because of the wrong function parameters. Thanks to [ant-druha](https://github.com/ant-druha)!
31+
32+
- [PowerShell/vscode-powershell #1141](https://github.com/PowerShell/vscode-powershell/pull/1141) -
33+
Updated install script minified URL. Thanks to [tabs-not-spaces](https://github.com/tabs-not-spaces)!
34+
35+
- [PowerShell/PowerShellEditorServices #258](https://github.com/PowerShell/PowerShellEditorServices/issues/258) -
36+
add .Save() to FileContext API.
37+
38+
- [PowerShell/vscode-powershell #1137](https://github.com/PowerShell/vscode-powershell/pull/1137) -
39+
Added 64bit support & vscode-insiders install support. Thanks to [tabs-not-spaces](https://github.com/tabs-not-spaces)!
40+
41+
- [PowerShell/vscode-powershell #1115](https://github.com/PowerShell/vscode-powershell/issues/1115) -
42+
Fixed "Open in ISE" keyboard shortcut from overwriting basic editing keyboard shortcut.
43+
44+
- [PowerShell/vscode-powershell #1111](https://github.com/PowerShell/vscode-powershell/issues/1111) -
45+
Update examples tasks.json for 2.0.0 schema.
46+
347
## 1.5.1
448
### Tuesday, November 14, 2017
549

Diff for: appveyor.yml

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

Diff for: 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.5.1",
4+
"version": "1.6.0",
55
"publisher": "ms-vscode",
66
"description": "Develop PowerShell scripts in Visual Studio Code!",
77
"engines": {

Diff for: src/main.ts

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

3535
// NOTE: We will need to find a better way to deal with the required
3636
// PS Editor Services version...
37-
const requiredEditorServicesVersion = "1.5.1";
37+
const requiredEditorServicesVersion = "1.6.0";
3838

3939
let logger: Logger;
4040
let sessionManager: SessionManager;

0 commit comments

Comments
 (0)