From b0f6effea3e407f582455ebbe2e7d3817bdd35c8 Mon Sep 17 00:00:00 2001 From: David Wilson Date: Wed, 22 Mar 2017 16:32:47 -0700 Subject: [PATCH] Bump version to 0.11.0, update CHANGELOG.md --- CHANGELOG.md | 26 +++++++++++++++++++ PowerShellEditorServices.Common.props | 2 +- appveyor.yml | 2 +- .../PowerShellEditorServices.psd1 | 2 +- .../ServerTestsBase.cs | 2 +- 5 files changed, 30 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c00db4980..07119804d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,31 @@ # PowerShell Editor Services Release History +## 0.11.0 +### Wednesday, March 22, 2017 + +#### Fixes and improvements + +- Added [PowerShell/vscode-powershell#583](https://github.com/PowerShell/vscode-powershell/issues/583) - + When you open files in a remote PowerShell session with the `psedit` command, + their updated contents are now saved back to the remote machine when you save + them in the editor. +- Added [PowerShell/vscode-powershell#540](https://github.com/PowerShell/vscode-powershell/issues/540) - + The scripts that you debug are now dot-sourced into the integrated console's + session, allowing you to experiment with the results of your last execution. +- Added [PowerShell/vscode-powershell#600](https://github.com/PowerShell/vscode-powershell/issues/600) - + Debugger commands like `stepInto`, `continue`, and `quit` are now available + in the integrated console while debugging a script. +- Fixed [PowerShell/vscode-powershell#533](https://github.com/PowerShell/vscode-powershell/issues/533) - + The backspace key now works in the integrated console on Linux and macOS. This + fix also resolves a few usability problems with the integrated console on all + supported OSes. +- Fixed [PowerShell/vscode-powershell#542](https://github.com/PowerShell/vscode-powershell/issues/542) - + Get-Credential now hides keystrokes correctly on Linux and macOS. +- Fixed [PowerShell/vscode-powershell#579](https://github.com/PowerShell/vscode-powershell/issues/579) - + Sorting of IntelliSense results is now consistent with the PowerShell ISE +- Fixed [PowerShell/vscode-powershell#575](https://github.com/PowerShell/vscode-powershell/issues/575) - + The interactive console no longer starts up with errors in the `$Error` variable. + ## 0.10.1 ### Thursday, March 16, 2017 diff --git a/PowerShellEditorServices.Common.props b/PowerShellEditorServices.Common.props index 66d20d322..9ca39e063 100644 --- a/PowerShellEditorServices.Common.props +++ b/PowerShellEditorServices.Common.props @@ -1,6 +1,6 @@ - 0.10.1 + 0.11.0 beta Microsoft © Microsoft Corporation. All rights reserved. diff --git a/appveyor.yml b/appveyor.yml index 566bebc8a..089e50f90 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: '0.10.1.{build}' +version: '0.11.0.{build}' image: Visual Studio 2017 clone_depth: 10 skip_tags: true diff --git a/module/PowerShellEditorServices/PowerShellEditorServices.psd1 b/module/PowerShellEditorServices/PowerShellEditorServices.psd1 index a59b3e4ac..8354c6b42 100644 --- a/module/PowerShellEditorServices/PowerShellEditorServices.psd1 +++ b/module/PowerShellEditorServices/PowerShellEditorServices.psd1 @@ -12,7 +12,7 @@ RootModule = 'PowerShellEditorServices.psm1' # Version number of this module. -ModuleVersion = '0.10.1' +ModuleVersion = '0.11.0' # ID used to uniquely identify this module GUID = '9ca15887-53a2-479a-9cda-48d26bcb6c47' diff --git a/test/PowerShellEditorServices.Test.Host/ServerTestsBase.cs b/test/PowerShellEditorServices.Test.Host/ServerTestsBase.cs index 591730744..3f1d4c4c3 100644 --- a/test/PowerShellEditorServices.Test.Host/ServerTestsBase.cs +++ b/test/PowerShellEditorServices.Test.Host/ServerTestsBase.cs @@ -34,7 +34,7 @@ protected async Task> LaunchService( string scriptPath = Path.Combine(modulePath, "Start-EditorServices.ps1"); // TODO: Need to determine the right module version programmatically! - string editorServicesModuleVersion = "0.10.1"; + string editorServicesModuleVersion = "0.11.0"; string scriptArgs = string.Format(