From 7545e76f5b119f7881b2b13230eec9d53d9a6a44 Mon Sep 17 00:00:00 2001 From: David Wilson Date: Tue, 4 Apr 2017 11:00:37 -0700 Subject: [PATCH] Bump version to 0.12.0, update CHANGELOG.md --- CHANGELOG.md | 27 +++++++++++++++++++ PowerShellEditorServices.Common.props | 2 +- appveyor.yml | 2 +- .../PowerShellEditorServices.psd1 | 2 +- .../ServerTestsBase.cs | 2 +- 5 files changed, 31 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 07119804d..3a3ae7c31 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # PowerShell Editor Services Release History +## 0.12.0 +### Tuesday, April 4, 2017 + +#### Fixes and improvements + +- Added [#408](https://github.com/PowerShell/PowerShellEditorServices/pull/408) - + Enabled debugging of untitled script files + +- Added [#405](https://github.com/PowerShell/PowerShellEditorServices/pull/405) - + Script column number is now reported in the top stack frame when the debugger + stops to aid in displaying a column indicator in Visual Studio Code + +- Fixed [#411](https://github.com/PowerShell/PowerShellEditorServices/issues/411) - + Commands executed internally now interrupt the integrated console's command + prompt + +- Fixed [#409](https://github.com/PowerShell/PowerShellEditorServices/pull/409) - + PowerShell session now does not crash when a breakpoint is hit outside of + debug mode + +- Fixed [#614](https://github.com/PowerShell/vscode-powershell/issues/614) - + Auto variables are now populating correctly in the debugger. **NOTE**: There is + a known issue where all of a script's variables begin to show up in the + Auto list after running a script for the first time. This is caused by + a change in 0.11.0 where we now dot-source all debugged scripts. We will + provide an option for this behavior in the future + ## 0.11.0 ### Wednesday, March 22, 2017 diff --git a/PowerShellEditorServices.Common.props b/PowerShellEditorServices.Common.props index 9ca39e063..df6b385ce 100644 --- a/PowerShellEditorServices.Common.props +++ b/PowerShellEditorServices.Common.props @@ -1,6 +1,6 @@ - 0.11.0 + 0.12.0 beta Microsoft © Microsoft Corporation. All rights reserved. diff --git a/appveyor.yml b/appveyor.yml index 089e50f90..cf66fe827 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: '0.11.0.{build}' +version: '0.12.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 8354c6b42..72e7e1b1f 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.11.0' +ModuleVersion = '0.12.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 3f1d4c4c3..74fbc6470 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.11.0"; + string editorServicesModuleVersion = "0.12.0"; string scriptArgs = string.Format(