Skip to content

Release 1.2.1 #822

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

Merged
merged 1 commit into from
Jun 1, 2017
Merged
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
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# vscode-powershell Release History

## 1.2.1
### Thursday, June 1, 2017

#### Fixes and improvements

- [PowerShell/PowerShellEditorServices#478](https://github.com/PowerShell/PowerShellEditorServices/issues/478) -
Dynamic comment help snippets now generate parameter fields correctly
when `<#` is typed above a `param()` block.

- [#808](https://github.com/PowerShell/vscode-powershell/issues/808) -
An extra `PS>` is no longer being written to the Integrated Console for
some users who have custom prompt functions.

- [#813](https://github.com/PowerShell/vscode-powershell/issues/813) -
Finding references of symbols across the workspace now properly handles
inaccessible folders and file paths

- [#810](https://github.com/PowerShell/vscode-powershell/issues/810) -
`$psEditor.GetEditorContext()` now doesn't throw exceptions when in an
untitled file

- [#807](https://github.com/PowerShell/vscode-powershell/issues/807) -
The users's previously selected PowerShell session type is now retained
when running the "PowerShell: Restart Current Session" command.

- [#821](https://github.com/PowerShell/vscode-powershell/issues/821) -
Note properties on PSObjects are now visible in the debugger's Variables
view

## 1.2.0
### Wednesday, May 31, 2017

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.2.0-insiders-{build}'
version: '1.2.1-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.2.0",
"version": "1.2.1",
"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 @@ -31,7 +31,7 @@ import { HelpCompletionFeature } from "./features/HelpCompletion";

// NOTE: We will need to find a better way to deal with the required
// PS Editor Services version...
var requiredEditorServicesVersion = "1.2.0";
var requiredEditorServicesVersion = "1.2.1";

var logger: Logger = undefined;
var sessionManager: SessionManager = undefined;
Expand Down