Skip to content

Commit

Permalink
[Ignore] Prepare 1.9.0 release (#1550)
Browse files Browse the repository at this point in the history
  • Loading branch information
rjmholt authored Sep 28, 2018
1 parent cf99606 commit cc4d2f9
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 4 deletions.
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# vscode-powershell Release History

## v1.9.0
### Thursday, September 27, 2018
#### [vscode-powershell](https://github.com/powershell/vscode-powershell)

- [vscode-PowerShell #1548](https://github.com/PowerShell/vscode-PowerShell/pull/1548) -
Explicitly return `undefined` from resolveDbgConfig when session not started (Thanks @rkeithhill!)
- [vscode-PowerShell #1516](https://github.com/PowerShell/vscode-PowerShell/pull/1516) -
Change "Get Online Help" menu item label to "Get Help" (Thanks @corbob!)
- [vscode-PowerShell #1525](https://github.com/PowerShell/vscode-PowerShell/pull/1525) -
Remove duplicate/overlapping folding regions (Thanks @glennsarti!)

#### [PowerShellEditorServices](https://github.com/powershell/PowerShellEditorServices)

- [PowerShellEditorServices #750](https://github.com/PowerShell/PowerShellEditorServices/pull/750) -
Fix issue where # in path causes the path to resolve incorrectly
- [PowerShellEditorServices #721](https://github.com/PowerShell/PowerShellEditorServices/pull/721) -
Change Get-Help behavior to return local help when online help can't be displayed (Thanks @corbob!)
- [PowerShellEditorServices #748](https://github.com/PowerShell/PowerShellEditorServices/pull/748) -
Fix index out-of-range exception when deleting script files
- [PowerShellEditorServices #749](https://github.com/PowerShell/PowerShellEditorServices/pull/749) -
Fix crash for finding symbols on bad paths
- [PowerShellEditorServices #740](https://github.com/PowerShell/PowerShellEditorServices/pull/740) -
Fix inner help completion
- [PowerShellEditorServices #736](https://github.com/PowerShell/PowerShellEditorServices/pull/736) -
Cache the reflection call done for completions
- [PowerShellEditorServices #737](https://github.com/PowerShell/PowerShellEditorServices/pull/737) -
Remove LINQ usage in language service methods
- [PowerShellEditorServices #743](https://github.com/PowerShell/PowerShellEditorServices/pull/743) -
Remove unnecessary LINQ calls from LanguageServer

## v1.8.4
### Friday, August 31, 2018
#### [vscode-powershell](https://github.com/powershell/vscode-powershell)
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: '1.8.5-insiders-{build}'
version: '1.9.0-insiders-{build}'
image: Visual Studio 2017
clone_depth: 10
skip_tags: true
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "PowerShell",
"displayName": "PowerShell",
"version": "1.8.5",
"version": "1.9.0",
"publisher": "ms-vscode",
"description": "Develop PowerShell scripts in Visual Studio Code!",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.5";
const requiredEditorServicesVersion = "1.9.0";

let logger: Logger;
let sessionManager: SessionManager;
Expand Down
2 changes: 1 addition & 1 deletion tools/releaseBuild/Image/DockerFile
Original file line number Diff line number Diff line change
Expand Up @@ -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.5
ENV VSTS_BUILD_VERSION=1.9.0

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

0 comments on commit cc4d2f9

Please sign in to comment.