From 08896dabc29931444953844868d47c998ad902eb Mon Sep 17 00:00:00 2001 From: Kapil Borle Date: Fri, 1 Sep 2017 10:27:13 -0700 Subject: [PATCH 1/3] Update changelog --- CHANGELOG.MD | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.MD b/CHANGELOG.MD index d6c440e18..2cbe8d9c5 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -1,4 +1,8 @@ -## [1.16.0](https://github.com/PowerShell/PSScriptAnalyzer/tree/1.16.0) - 2017-08-15 +## [1.16.1](https://github.com/PowerShell/PSScriptAnalyzer/tree/1.16.1) - 2017-09-01 +### Fixed +- (#815) Formatter crashes due to invalid extent comparisons + +## [1.16.0](https://github.com/PowerShell/PSScriptAnalyzer/tree/1.16.0) - 2017-08-15 ### Added - (#803) `CustomRulePath`, `RecurseCustomRulePath` and `IncludeDefaultRules` parameters to settings file. From 0f09ec457ca7da22b88525e08915649892eb256f Mon Sep 17 00:00:00 2001 From: Kapil Borle Date: Fri, 1 Sep 2017 10:28:42 -0700 Subject: [PATCH 2/3] Update module manifest --- Engine/PSScriptAnalyzer.psd1 | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/Engine/PSScriptAnalyzer.psd1 b/Engine/PSScriptAnalyzer.psd1 index 4a24c8c92..75554ffe4 100644 --- a/Engine/PSScriptAnalyzer.psd1 +++ b/Engine/PSScriptAnalyzer.psd1 @@ -11,7 +11,7 @@ Author = 'Microsoft Corporation' RootModule = 'PSScriptAnalyzer.psm1' # Version number of this module. -ModuleVersion = '1.16.0' +ModuleVersion = '1.16.1' # ID used to uniquely identify this module GUID = 'd6245802-193d-4068-a631-8863a4342a18' @@ -87,12 +87,8 @@ PrivateData = @{ ProjectUri = 'https://github.com/PowerShell/PSScriptAnalyzer' IconUri = '' ReleaseNotes = @' -### Added -- (#803) `CustomRulePath`, `RecurseCustomRulePath` and `IncludeDefaultRules` parameters to settings file. - ### Fixed -- (#801) Reading DSC classes in `PSUseIdenticalMandatoryParametersForDSC` rule. -- (#796) `PSAvoidUsingWriteHost` rule documentation (Thanks @bergmeister!). +- (#815) Formatter crashes due to invalid extent comparisons '@ } } @@ -117,3 +113,4 @@ PrivateData = @{ + From e46e146caec908bdb971c131969c28f9e6ebf9ad Mon Sep 17 00:00:00 2001 From: Kapil Borle Date: Fri, 1 Sep 2017 10:28:59 -0700 Subject: [PATCH 3/3] Bump version to 1.16.1 --- Engine/project.json | 2 +- Rules/project.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Engine/project.json b/Engine/project.json index f60424aea..620ade237 100644 --- a/Engine/project.json +++ b/Engine/project.json @@ -1,6 +1,6 @@ { "name": "Microsoft.Windows.PowerShell.ScriptAnalyzer", - "version": "1.16.0", + "version": "1.16.1", "dependencies": { "System.Management.Automation": "6.0.0-alpha13" }, diff --git a/Rules/project.json b/Rules/project.json index 5a33b4acb..6a37f6f04 100644 --- a/Rules/project.json +++ b/Rules/project.json @@ -1,9 +1,9 @@ { "name": "Microsoft.Windows.PowerShell.ScriptAnalyzer.BuiltinRules", - "version": "1.16.0", + "version": "1.16.1", "dependencies": { "System.Management.Automation": "6.0.0-alpha13", - "Engine": "1.16.0", + "Engine": "1.16.1", "Newtonsoft.Json": "9.0.1" },