From 3471bb0b2ecc59e14c50062ab6bc7ac23fe809e3 Mon Sep 17 00:00:00 2001 From: Tyler Leonhardt Date: Thu, 26 Jul 2018 13:33:21 -0700 Subject: [PATCH 1/3] Prep for 1.8.2 release --- CHANGELOG.md | 12 ++++++++++++ PowerShellEditorServices.Common.props | 2 +- appveyor.yml | 2 +- .../PowerShellEditorServices.psd1 | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a52b2c283..d98c8580a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # PowerShell Editor Services Release History +## v1.8.2 +### Thursday, July 26, 2018 + +#### Fixes and Improvements + +- [PowerShell/PowerShellEditorServices #712](https://github.com/PowerShell/PowerShellEditorServices/pull/712) workaround to support inmemory:// (#712) +- [PowerShell/PowerShellEditorServices #706](https://github.com/PowerShell/PowerShellEditorServices/pull/706) Go To Definition works with different Ast types (#706) +- [PowerShell/PowerShellEditorServices #707](https://github.com/PowerShell/PowerShellEditorServices/pull/707) fix stdio passing (#707) +- [PowerShell/PowerShellEditorServices #709](https://github.com/PowerShell/PowerShellEditorServices/pull/709) Stop Diagnostic logging from logging to stdio when the communication protocol is set to stdio (#709) +- [PowerShell/PowerShellEditorServices #710](https://github.com/PowerShell/PowerShellEditorServices/pull/710) stdio should only launch language service not debug (#710) +- [PowerShell/PowerShellEditorServices #705](https://github.com/PowerShell/PowerShellEditorServices/pull/705) Fix load order of PSSA modules (#705) + ## v1.8.1 ### Wednesday, July 11, 2018 diff --git a/PowerShellEditorServices.Common.props b/PowerShellEditorServices.Common.props index c904b458b..4a66d2acc 100644 --- a/PowerShellEditorServices.Common.props +++ b/PowerShellEditorServices.Common.props @@ -1,6 +1,6 @@ - 1.8.1 + 1.8.2 Microsoft © Microsoft Corporation. All rights reserved. PowerShell;editor;development;language;debugging diff --git a/appveyor.yml b/appveyor.yml index f9e85f7fb..6d22ddaf9 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: '1.8.1.{build}' +version: '1.8.2.{build}' image: Visual Studio 2017 clone_depth: 10 skip_tags: true diff --git a/module/PowerShellEditorServices/PowerShellEditorServices.psd1 b/module/PowerShellEditorServices/PowerShellEditorServices.psd1 index acfacceb5..52a1d02f5 100644 --- a/module/PowerShellEditorServices/PowerShellEditorServices.psd1 +++ b/module/PowerShellEditorServices/PowerShellEditorServices.psd1 @@ -12,7 +12,7 @@ RootModule = 'PowerShellEditorServices.psm1' # Version number of this module. -ModuleVersion = '1.8.1' +ModuleVersion = '1.8.2' # ID used to uniquely identify this module GUID = '9ca15887-53a2-479a-9cda-48d26bcb6c47' From cfd573c397bfe39450287bfd4c689a23641c0978 Mon Sep 17 00:00:00 2001 From: Tyler James Leonhardt Date: Thu, 26 Jul 2018 13:36:44 -0700 Subject: [PATCH 2/3] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d98c8580a..08d845d6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ - [PowerShell/PowerShellEditorServices #709](https://github.com/PowerShell/PowerShellEditorServices/pull/709) Stop Diagnostic logging from logging to stdio when the communication protocol is set to stdio (#709) - [PowerShell/PowerShellEditorServices #710](https://github.com/PowerShell/PowerShellEditorServices/pull/710) stdio should only launch language service not debug (#710) - [PowerShell/PowerShellEditorServices #705](https://github.com/PowerShell/PowerShellEditorServices/pull/705) Fix load order of PSSA modules (#705) +- [PowerShell/PowerShellEditorServices #704](https://github.com/PowerShell/PowerShellEditorServices/pull/704) Do not enable PSAvoidTrailingWhitespace rule by default as it currenly flags whitespace-only lines as well (#704) (Thanks @bergmeister!) ## v1.8.1 ### Wednesday, July 11, 2018 From 17fd2dba550961487f6c187fef17a49ed35dea25 Mon Sep 17 00:00:00 2001 From: Tyler James Leonhardt Date: Thu, 26 Jul 2018 14:00:41 -0700 Subject: [PATCH 3/3] touch up --- CHANGELOG.md | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 08d845d6c..0e1a8839f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,13 +5,20 @@ #### Fixes and Improvements -- [PowerShell/PowerShellEditorServices #712](https://github.com/PowerShell/PowerShellEditorServices/pull/712) workaround to support inmemory:// (#712) -- [PowerShell/PowerShellEditorServices #706](https://github.com/PowerShell/PowerShellEditorServices/pull/706) Go To Definition works with different Ast types (#706) -- [PowerShell/PowerShellEditorServices #707](https://github.com/PowerShell/PowerShellEditorServices/pull/707) fix stdio passing (#707) -- [PowerShell/PowerShellEditorServices #709](https://github.com/PowerShell/PowerShellEditorServices/pull/709) Stop Diagnostic logging from logging to stdio when the communication protocol is set to stdio (#709) -- [PowerShell/PowerShellEditorServices #710](https://github.com/PowerShell/PowerShellEditorServices/pull/710) stdio should only launch language service not debug (#710) -- [PowerShell/PowerShellEditorServices #705](https://github.com/PowerShell/PowerShellEditorServices/pull/705) Fix load order of PSSA modules (#705) -- [PowerShell/PowerShellEditorServices #704](https://github.com/PowerShell/PowerShellEditorServices/pull/704) Do not enable PSAvoidTrailingWhitespace rule by default as it currenly flags whitespace-only lines as well (#704) (Thanks @bergmeister!) +- [PowerShell/PowerShellEditorServices #712](https://github.com/PowerShell/PowerShellEditorServices/pull/712) - + workaround to support inmemory:// (#712) +- [PowerShell/PowerShellEditorServices #706](https://github.com/PowerShell/PowerShellEditorServices/pull/706) - + Go To Definition works with different Ast types (#706) +- [PowerShell/PowerShellEditorServices #707](https://github.com/PowerShell/PowerShellEditorServices/pull/707) - + fix stdio passing (#707) +- [PowerShell/PowerShellEditorServices #709](https://github.com/PowerShell/PowerShellEditorServices/pull/709) - + Stop Diagnostic logging from logging to stdio when the communication protocol is set to stdio (#709) +- [PowerShell/PowerShellEditorServices #710](https://github.com/PowerShell/PowerShellEditorServices/pull/710) - + stdio should only launch language service not debug (#710) +- [PowerShell/PowerShellEditorServices #705](https://github.com/PowerShell/PowerShellEditorServices/pull/705) - + Fix load order of PSSA modules (#705) +- [PowerShell/PowerShellEditorServices #704](https://github.com/PowerShell/PowerShellEditorServices/pull/704) - + Do not enable PSAvoidTrailingWhitespace rule by default as it currenly flags whitespace-only lines as well (#704) (Thanks @bergmeister!) ## v1.8.1 ### Wednesday, July 11, 2018