Skip to content

Commit a213b17

Browse files
committed
Bump version to 1.1.0, update CHANGELOG.md
1 parent 396286e commit a213b17

File tree

4 files changed

+58
-3
lines changed

4 files changed

+58
-3
lines changed

Diff for: CHANGELOG.md

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

3+
## 1.1.0
4+
### Thursday, May 18, 2017
5+
6+
#### New dynamic snippet for adding comment-based help ([#748](https://github.com/PowerShell/vscode-powershell/issues/748))
7+
8+
We've added a really cool new feature that enables you to create comment-based
9+
help blocks with ease! When you've defined a function in a PowerShell script
10+
file, you can now start typing a comment block above the function definition
11+
and it will be completed for you:
12+
13+
![Help Comment GIF](https://cloud.githubusercontent.com/assets/79405/26216440/f31a47c8-3bb8-11e7-9fbc-7e3fb596c0ea.GIF)
14+
15+
This comment block works like a snippet, allowing you to tab through the fields
16+
to quickly add documentation for the parts you care about.
17+
18+
This is a first pass for this feature and we plan to do more with it in the future.
19+
Please feel free to [file feature requests](https://git.io/v9jnL) for anything else
20+
you'd like to see!
21+
22+
#### Breakpoints hit in the Integrated Console now activate the debugger UI ([#619](https://github.com/PowerShell/vscode-powershell/issues/619))
23+
24+
In previous releases it was necessary to start the "PowerShell Interactive Session"
25+
debugging configuration before you could run a command or script from the Integrated
26+
Console and hit breakpoints in the editor UI. We've just removed this limitation!
27+
28+
Now when you set a breakpoint using `Set-PSBreakpoint` and run a script or command in the
29+
Integrated Console, the debugger UI now gets activated:
30+
31+
![Debugger Activate GIF](https://cloud.githubusercontent.com/assets/79405/26217019/d17708f2-3bba-11e7-982f-4d481c2cf533.GIF)
32+
33+
Note that breakpoints set in the Integrated Console [still do not show up](https://github.com/PowerShell/vscode-powershell/issues/660)
34+
in the editor UI; this requires [changes to VS Code](https://github.com/Microsoft/vscode/issues/8642)
35+
that we'll be contributing for their next feature release.
36+
37+
#### Improved output when loading profile scripts ([#663](https://github.com/PowerShell/vscode-powershell/issues/663) and [#689](https://github.com/PowerShell/vscode-powershell/issues/689))
38+
39+
We now write the errors and Write-Output calls that occur while loading profile
40+
scripts so that it's easier to diagnose issues with your profile scripts. This
41+
fix will help us identify the things missing from the Integrated Console which
42+
cause your profile scripts to fail (like the current lack of a [PrivateData object for setting console colors](https://github.com/PowerShell/vscode-powershell/issues/571)).
43+
44+
Please feel free to [file issues](https://git.io/v9jnL) for anything that causes
45+
your profile scripts to throw errors when they get loaded!
46+
47+
#### Other fixes and improvements
48+
49+
- [#751](https://github.com/PowerShell/vscode-powershell/issues/751) -
50+
Removed keybinding for the "Find PowerShell Modules from the Gallery" command
51+
because it conflicts with VS Code's default "Format Selection" keybinding.
52+
53+
- [#739](https://github.com/PowerShell/vscode-powershell/issues/739) -
54+
Fixed wording of PowerShell extension commands to have consistent capitalization.
55+
Thanks to [@AndySchneiderDev](https://github.com/AndySchneiderDev) for the
56+
contribution!
57+
358
## 1.0.0
459
### Wednesday, May 10, 2017
560

Diff for: appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: '1.0.0-insiders-{build}'
1+
version: '1.1.0-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.0.0",
4+
"version": "1.1.0",
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.0.0";
34+
var requiredEditorServicesVersion = "1.1.0";
3535

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

0 commit comments

Comments
 (0)