Skip to content

Commit b0bd19d

Browse files
authored
Merge pull request #573 from daviwil/release/0.10.1
Release 0.10.1
2 parents 24c48b7 + 5d7782e commit b0bd19d

File tree

4 files changed

+27
-3
lines changed

4 files changed

+27
-3
lines changed

CHANGELOG.md

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

3+
## 0.10.1
4+
### Thursday, March 16, 2017
5+
6+
#### Fixes and improvements
7+
8+
- Fixed [#566](https://github.com/PowerShell/vscode-powershell/issues/566) -
9+
Enable editor IntelliSense while stopped at a breakpoint
10+
- Fixed [#556](https://github.com/PowerShell/vscode-powershell/issues/556) -
11+
Running and debugging scripts in the integrated console should not steal focus from the editor
12+
- Fixed [#543](https://github.com/PowerShell/vscode-powershell/issues/543) -
13+
Keyboard input using <kbd>AltGr</kbd> <kbd>Ctrl+Alt</kbd> modifiers does not work
14+
- Fixed [#421](https://github.com/PowerShell/vscode-powershell/issues/421) -
15+
Session startup should give a helpful error message if ConstrainedLanguage mode is turned on
16+
- Fixed [#401](https://github.com/PowerShell/vscode-powershell/issues/401) -
17+
Session startup should indicate if current PowerShell version is unsupported (PSv1 and v2)
18+
- Fixed [#454](https://github.com/PowerShell/vscode-powershell/issues/454) -
19+
ExecutionPolicy set via group policy or registry key should not cause language server to crash
20+
- Fixed [#532](https://github.com/PowerShell/vscode-powershell/issues/532) -
21+
DEVPATH environment variable not being set for interactive console session
22+
- Fixed [PowerShellEditorServices #387](https://github.com/PowerShell/PowerShellEditorServices/issues/387) -
23+
Write-(Warning, Verbose, Debug) are missing message prefixes and foreground colors
24+
- Fixed [PowerShellEditorServices #382](https://github.com/PowerShell/PowerShellEditorServices/issues/382) -
25+
PSHostUserInterface implementation should set SupportsVirtualTerminal to true
26+
327
## 0.10.0
428
### Tuesday, March 14, 2017
529

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: '0.9.1-insiders-{build}'
1+
version: '0.10.1-insiders-{build}'
22
image: Visual Studio 2017 RC
33
clone_depth: 10
44
skip_tags: true

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": "0.10.0",
4+
"version": "0.10.1",
55
"publisher": "ms-vscode",
66
"description": "Develop PowerShell scripts in Visual Studio Code!",
77
"engines": {

src/main.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import { DocumentFormatterFeature } from './features/DocumentFormatter';
2727

2828
// NOTE: We will need to find a better way to deal with the required
2929
// PS Editor Services version...
30-
var requiredEditorServicesVersion = "0.10.0";
30+
var requiredEditorServicesVersion = "0.10.1";
3131

3232
var logger: Logger = undefined;
3333
var sessionManager: SessionManager = undefined;

0 commit comments

Comments
 (0)