Skip to content

Release 0.6.2 #266

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# PowerShell Editor Services Release History

## 0.6.2
### Tuesday, August 9, 2016

- Fixed #264: Variable and parameter IntelliSense broken in VS Code 1.4.0
- Fixed #240: Completion item with regex metachars can cause editor host to crash
- Fixed #232: Language server sometimes crashes then $ErrorActionPreference = "Stop"

## 0.6.1
### Monday, May 16, 2016

Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ configuration: Release
clone_depth: 10

environment:
core_version: '0.6.1'
core_version: '0.6.2'
prerelease_name: '-beta'

branches:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1164,6 +1164,7 @@ private static CompletionItem CreateCompletionItem(
Detail = detailString,
Documentation = documentationString,
SortText = sortText,
FilterText = completionDetails.CompletionText,
TextEdit = new TextEdit
{
NewText = completionDetails.CompletionText,
Expand Down