Skip to content

Commit b82f57c

Browse files
author
Kapil Borle
authored
Merge pull request #818 from PowerShell/kapilmb/v1.16.1
Prepare release v1.16.1
2 parents 088b27b + e46e146 commit b82f57c

File tree

4 files changed

+11
-10
lines changed

4 files changed

+11
-10
lines changed

CHANGELOG.MD

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
## [1.16.0](https://github.com/PowerShell/PSScriptAnalyzer/tree/1.16.0) - 2017-08-15
1+
## [1.16.1](https://github.com/PowerShell/PSScriptAnalyzer/tree/1.16.1) - 2017-09-01
2+
### Fixed
3+
- (#815) Formatter crashes due to invalid extent comparisons
4+
5+
## [1.16.0](https://github.com/PowerShell/PSScriptAnalyzer/tree/1.16.0) - 2017-08-15
26
### Added
37
- (#803) `CustomRulePath`, `RecurseCustomRulePath` and `IncludeDefaultRules` parameters to settings file.
48

Engine/PSScriptAnalyzer.psd1

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Author = 'Microsoft Corporation'
1111
RootModule = 'PSScriptAnalyzer.psm1'
1212

1313
# Version number of this module.
14-
ModuleVersion = '1.16.0'
14+
ModuleVersion = '1.16.1'
1515

1616
# ID used to uniquely identify this module
1717
GUID = 'd6245802-193d-4068-a631-8863a4342a18'
@@ -87,12 +87,8 @@ PrivateData = @{
8787
ProjectUri = 'https://github.com/PowerShell/PSScriptAnalyzer'
8888
IconUri = ''
8989
ReleaseNotes = @'
90-
### Added
91-
- (#803) `CustomRulePath`, `RecurseCustomRulePath` and `IncludeDefaultRules` parameters to settings file.
92-
9390
### Fixed
94-
- (#801) Reading DSC classes in `PSUseIdenticalMandatoryParametersForDSC` rule.
95-
- (#796) `PSAvoidUsingWriteHost` rule documentation (Thanks @bergmeister!).
91+
- (#815) Formatter crashes due to invalid extent comparisons
9692
'@
9793
}
9894
}
@@ -117,3 +113,4 @@ PrivateData = @{
117113

118114

119115

116+

Engine/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Microsoft.Windows.PowerShell.ScriptAnalyzer",
3-
"version": "1.16.0",
3+
"version": "1.16.1",
44
"dependencies": {
55
"System.Management.Automation": "6.0.0-alpha13"
66
},

Rules/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "Microsoft.Windows.PowerShell.ScriptAnalyzer.BuiltinRules",
3-
"version": "1.16.0",
3+
"version": "1.16.1",
44
"dependencies": {
55
"System.Management.Automation": "6.0.0-alpha13",
6-
"Engine": "1.16.0",
6+
"Engine": "1.16.1",
77
"Newtonsoft.Json": "9.0.1"
88
},
99

0 commit comments

Comments
 (0)