diff --git a/CHANGELOG.md b/CHANGELOG.md index a2d553a72..c00db4980 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # PowerShell Editor Services Release History +## 0.10.1 +### Thursday, March 16, 2017 + +#### Fixes and improvements + +- Fixed [#387](https://github.com/PowerShell/PowerShellEditorServices/issues/387) - + Write-(Warning, Verbose, Debug) are missing message prefixes and foreground colors +- Fixed [#382](https://github.com/PowerShell/PowerShellEditorServices/issues/382) - + PSHostUserInterface implementation should set SupportsVirtualTerminal to true +- Fixed [#192](https://github.com/PowerShell/PowerShellEditorServices/issues/192) - + System-wide ExecutionPolicy of Bypass causes host process crash + ## 0.10.0 ### Tuesday, March 14, 2017 diff --git a/appveyor.yml b/appveyor.yml index 79db4795d..daa3a3499 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: '0.10.0.{build}' +version: '0.10.1.{build}' image: Visual Studio 2017 RC clone_depth: 10 skip_tags: true diff --git a/module/PowerShellEditorServices/PowerShellEditorServices.psd1 b/module/PowerShellEditorServices/PowerShellEditorServices.psd1 index def6348de..a59b3e4ac 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.0' +ModuleVersion = '0.10.1' # 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 7b8c0da9f..591730744 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.0"; + string editorServicesModuleVersion = "0.10.1"; string scriptArgs = string.Format(