Skip to content

Commit 543a8ae

Browse files
committed
Bump version to 1.2.1, update CHANGELOG.md
1 parent 005e996 commit 543a8ae

File tree

4 files changed

+32
-3
lines changed

4 files changed

+32
-3
lines changed

Diff for: CHANGELOG.md

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

3+
## 1.2.1
4+
### Thursday, June 1, 2017
5+
6+
#### Fixes and improvements
7+
8+
- [PowerShell/PowerShellEditorServices#478](https://github.com/PowerShell/PowerShellEditorServices/issues/478) -
9+
Dynamic comment help snippets now generate parameter fields correctly
10+
when `<#` is typed above a `param()` block.
11+
12+
- [#808](https://github.com/PowerShell/vscode-powershell/issues/808) -
13+
An extra `PS>` is no longer being written to the Integrated Console for
14+
some users who have custom prompt functions.
15+
16+
- [#813](https://github.com/PowerShell/vscode-powershell/issues/813) -
17+
Finding references of symbols across the workspace now properly handles
18+
inaccessible folders and file paths
19+
20+
- [#810](https://github.com/PowerShell/vscode-powershell/issues/810) -
21+
`$psEditor.GetEditorContext()` now doesn't throw exceptions when in an
22+
untitled file
23+
24+
- [#807](https://github.com/PowerShell/vscode-powershell/issues/807) -
25+
The users's previously selected PowerShell session type is now retained
26+
when running the "PowerShell: Restart Current Session" command.
27+
28+
- [#821](https://github.com/PowerShell/vscode-powershell/issues/821) -
29+
Note properties on PSObjects are now visible in the debugger's Variables
30+
view
31+
332
## 1.2.0
433
### Wednesday, May 31, 2017
534

Diff for: appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: '1.2.0-insiders-{build}'
1+
version: '1.2.1-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.2.0",
4+
"version": "1.2.1",
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
@@ -31,7 +31,7 @@ import { HelpCompletionFeature } from "./features/HelpCompletion";
3131

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

3636
var logger: Logger = undefined;
3737
var sessionManager: SessionManager = undefined;

0 commit comments

Comments
 (0)