Skip to content

Commit fdb0499

Browse files
author
Kapil Borle
authored
Merge pull request #813 from PowerShell/v1.16.0
Prepare release v1.16.0
2 parents 0eee586 + 5b66d52 commit fdb0499

File tree

4 files changed

+17
-11
lines changed

4 files changed

+17
-11
lines changed

CHANGELOG.MD

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-
## [1.15.0](https://github.com/PowerShell/PSScriptAnalyzer/tree/1.15.0) - 2017-06-21
1+
## [1.16.0](https://github.com/PowerShell/PSScriptAnalyzer/tree/1.16.0) - 2017-08-15
2+
### Added
3+
- (#803) `CustomRulePath`, `RecurseCustomRulePath` and `IncludeDefaultRules` parameters to settings file.
4+
5+
### Fixed
6+
- (#801) Reading DSC classes in `PSUseIdenticalMandatoryParametersForDSC` rule.
7+
- (#796) `PSAvoidUsingWriteHost` rule documentation (Thanks @bergmeister!).
8+
9+
## [1.15.0](https://github.com/PowerShell/PSScriptAnalyzer/tree/1.15.0) - 2017-06-21
210

311
### Added
412
- (#780) `Range` parameter to the `Invoke-Formatter` cmdlet. The user can specify the range in which formatting should be applied. The primary usage for this parameter is to be used with editors that request selection formatting.

Engine/PSScriptAnalyzer.psd1

+5-7
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.15.0'
14+
ModuleVersion = '1.16.0'
1515

1616
# ID used to uniquely identify this module
1717
GUID = 'd6245802-193d-4068-a631-8863a4342a18'
@@ -88,14 +88,11 @@ PrivateData = @{
8888
IconUri = ''
8989
ReleaseNotes = @'
9090
### Added
91-
- (#780) `Range` parameter to the `Invoke-Formatter` cmdlet. The user can specify the range in which formatting should be applied. The primary usage for this parameter is to be used with editors that request selection formatting.
92-
- (#782, #788) Allman style, Stroustrup style and one true brace style (OTBS) code formatting presets.
93-
- (#790) `Kind` switch to `PSUseConsistentIndentation` rule to provide tabbed indentation.
91+
- (#803) `CustomRulePath`, `RecurseCustomRulePath` and `IncludeDefaultRules` parameters to settings file.
9492
9593
### Fixed
96-
- (#781, #784) `NewLineAfer` switch behavior in `PSPlaceCloseBrace` rule. When the switch is set to `$false`, the emitted suggested corrections enforce branching control statements to be on the same line as their preceding closing braces. On the other hand when the switch is set to `$true`, the emitted suggested corrections enforce branching controls statements to be on the next line.
97-
98-
Many thanks to @rkeithhill for contributing the _Stroustrup_ style code formatting preset.
94+
- (#801) Reading DSC classes in `PSUseIdenticalMandatoryParametersForDSC` rule.
95+
- (#796) `PSAvoidUsingWriteHost` rule documentation (Thanks @bergmeister!).
9996
'@
10097
}
10198
}
@@ -119,3 +116,4 @@ Many thanks to @rkeithhill for contributing the _Stroustrup_ style code formatti
119116

120117

121118

119+

Engine/project.json

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

Rules/project.json

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

0 commit comments

Comments
 (0)