Skip to content

Commit cc4d2f9

Browse files
authored
[Ignore] Prepare 1.9.0 release (#1550)
1 parent cf99606 commit cc4d2f9

File tree

5 files changed

+34
-4
lines changed

5 files changed

+34
-4
lines changed

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# vscode-powershell Release History
22

3+
## v1.9.0
4+
### Thursday, September 27, 2018
5+
#### [vscode-powershell](https://github.com/powershell/vscode-powershell)
6+
7+
- [vscode-PowerShell #1548](https://github.com/PowerShell/vscode-PowerShell/pull/1548) -
8+
Explicitly return `undefined` from resolveDbgConfig when session not started (Thanks @rkeithhill!)
9+
- [vscode-PowerShell #1516](https://github.com/PowerShell/vscode-PowerShell/pull/1516) -
10+
Change "Get Online Help" menu item label to "Get Help" (Thanks @corbob!)
11+
- [vscode-PowerShell #1525](https://github.com/PowerShell/vscode-PowerShell/pull/1525) -
12+
Remove duplicate/overlapping folding regions (Thanks @glennsarti!)
13+
14+
#### [PowerShellEditorServices](https://github.com/powershell/PowerShellEditorServices)
15+
16+
- [PowerShellEditorServices #750](https://github.com/PowerShell/PowerShellEditorServices/pull/750) -
17+
Fix issue where # in path causes the path to resolve incorrectly
18+
- [PowerShellEditorServices #721](https://github.com/PowerShell/PowerShellEditorServices/pull/721) -
19+
Change Get-Help behavior to return local help when online help can't be displayed (Thanks @corbob!)
20+
- [PowerShellEditorServices #748](https://github.com/PowerShell/PowerShellEditorServices/pull/748) -
21+
Fix index out-of-range exception when deleting script files
22+
- [PowerShellEditorServices #749](https://github.com/PowerShell/PowerShellEditorServices/pull/749) -
23+
Fix crash for finding symbols on bad paths
24+
- [PowerShellEditorServices #740](https://github.com/PowerShell/PowerShellEditorServices/pull/740) -
25+
Fix inner help completion
26+
- [PowerShellEditorServices #736](https://github.com/PowerShell/PowerShellEditorServices/pull/736) -
27+
Cache the reflection call done for completions
28+
- [PowerShellEditorServices #737](https://github.com/PowerShell/PowerShellEditorServices/pull/737) -
29+
Remove LINQ usage in language service methods
30+
- [PowerShellEditorServices #743](https://github.com/PowerShell/PowerShellEditorServices/pull/743) -
31+
Remove unnecessary LINQ calls from LanguageServer
32+
333
## v1.8.4
434
### Friday, August 31, 2018
535
#### [vscode-powershell](https://github.com/powershell/vscode-powershell)

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: '1.8.5-insiders-{build}'
1+
version: '1.9.0-insiders-{build}'
22
image: Visual Studio 2017
33
clone_depth: 10
44
skip_tags: true

package.json

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

src/main.ts

Lines changed: 1 addition & 1 deletion
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.8.5";
39+
const requiredEditorServicesVersion = "1.9.0";
4040

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

tools/releaseBuild/Image/DockerFile

Lines changed: 1 addition & 1 deletion
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.8.5
26+
ENV VSTS_BUILD_VERSION=1.9.0
2727

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

0 commit comments

Comments
 (0)