Skip to content

Commit 0439152

Browse files
authored
Merge pull request #402 from daviwil/release/0.11.0
Release 0.11.0
2 parents 6213d1b + b0f6eff commit 0439152

File tree

5 files changed

+30
-4
lines changed

5 files changed

+30
-4
lines changed

CHANGELOG.md

+26
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# PowerShell Editor Services Release History
22

3+
## 0.11.0
4+
### Wednesday, March 22, 2017
5+
6+
#### Fixes and improvements
7+
8+
- Added [PowerShell/vscode-powershell#583](https://github.com/PowerShell/vscode-powershell/issues/583) -
9+
When you open files in a remote PowerShell session with the `psedit` command,
10+
their updated contents are now saved back to the remote machine when you save
11+
them in the editor.
12+
- Added [PowerShell/vscode-powershell#540](https://github.com/PowerShell/vscode-powershell/issues/540) -
13+
The scripts that you debug are now dot-sourced into the integrated console's
14+
session, allowing you to experiment with the results of your last execution.
15+
- Added [PowerShell/vscode-powershell#600](https://github.com/PowerShell/vscode-powershell/issues/600) -
16+
Debugger commands like `stepInto`, `continue`, and `quit` are now available
17+
in the integrated console while debugging a script.
18+
- Fixed [PowerShell/vscode-powershell#533](https://github.com/PowerShell/vscode-powershell/issues/533) -
19+
The backspace key now works in the integrated console on Linux and macOS. This
20+
fix also resolves a few usability problems with the integrated console on all
21+
supported OSes.
22+
- Fixed [PowerShell/vscode-powershell#542](https://github.com/PowerShell/vscode-powershell/issues/542) -
23+
Get-Credential now hides keystrokes correctly on Linux and macOS.
24+
- Fixed [PowerShell/vscode-powershell#579](https://github.com/PowerShell/vscode-powershell/issues/579) -
25+
Sorting of IntelliSense results is now consistent with the PowerShell ISE
26+
- Fixed [PowerShell/vscode-powershell#575](https://github.com/PowerShell/vscode-powershell/issues/575) -
27+
The interactive console no longer starts up with errors in the `$Error` variable.
28+
329
## 0.10.1
430
### Thursday, March 16, 2017
531

PowerShellEditorServices.Common.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<VersionPrefix>0.10.1</VersionPrefix>
3+
<VersionPrefix>0.11.0</VersionPrefix>
44
<VersionSuffix>beta</VersionSuffix>
55
<Company>Microsoft</Company>
66
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>

appveyor.yml

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

module/PowerShellEditorServices/PowerShellEditorServices.psd1

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
RootModule = 'PowerShellEditorServices.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '0.10.1'
15+
ModuleVersion = '0.11.0'
1616

1717
# ID used to uniquely identify this module
1818
GUID = '9ca15887-53a2-479a-9cda-48d26bcb6c47'

test/PowerShellEditorServices.Test.Host/ServerTestsBase.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ protected async Task<Tuple<int, int>> LaunchService(
3434
string scriptPath = Path.Combine(modulePath, "Start-EditorServices.ps1");
3535

3636
// TODO: Need to determine the right module version programmatically!
37-
string editorServicesModuleVersion = "0.10.1";
37+
string editorServicesModuleVersion = "0.11.0";
3838

3939
string scriptArgs =
4040
string.Format(

0 commit comments

Comments
 (0)