Skip to content

Commit c23e487

Browse files
author
Kapil Borle
committed
Prepare release v1.8.1
1 parent 87335b3 commit c23e487

File tree

3 files changed

+9
-16
lines changed

3 files changed

+9
-16
lines changed

Engine/PSScriptAnalyzer.psd1

+5-12
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.8.0'
14+
ModuleVersion = '1.8.1'
1515

1616
# ID used to uniquely identify this module
1717
GUID = 'd6245802-193d-4068-a631-8863a4342a18'
@@ -88,19 +88,11 @@ PrivateData = @{
8888
IconUri = ''
8989
ReleaseNotes = @'
9090
### Added
91-
- New rule to check cmdlet compatibility between different PowerShell flavors
92-
- New rule to warn when using Hashtable constructor
93-
- Feature to pass parameters to rules from settings file
94-
- Feature to discover settings file
95-
- Enhancement to PSShouldProcess rule to check for ShouldProcess implementation in downstream functions
96-
- A helper module to create `C#` based builtin rules
91+
- Catalog file to play nicely with PowerShellGet, version `1.1.0.0`
9792
9893
### Fixed
99-
- False negatives for identically named variables
100-
- Passing `*Ast` arguments to external rules
101-
102-
### Changed
103-
- PSShouldProcess rule to not check for presence of `ShouldContinue` when `SupportsShouldProcess` is declared
94+
- [PSUsePSCredentialType](RuleDocumentation/UsePSCredentialType.md) rule to check for attributes on same line without an whitespace between them.
95+
- [PSUseShouldProcessForStateChangingFunctions](RuleDocumentation/UseShouldProcessForStateChangingFunctions.md) rule to check for `start` verb (#634)
10496
'@
10597
}
10698
}
@@ -113,3 +105,4 @@ PrivateData = @{
113105

114106
}
115107

108+

Engine/project.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Microsoft.Windows.PowerShell.ScriptAnalyzer",
3-
"version": "1.8.0",
3+
"version": "1.8.1",
44
"dependencies": {
55
"System.Management.Automation": "1.0.0-alpha10"
66
},
@@ -49,4 +49,4 @@
4949
}
5050
}
5151
}
52-
}
52+
}

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.8.0",
3+
"version": "1.8.1",
44
"dependencies": {
55
"System.Management.Automation": "1.0.0-alpha10",
6-
"Engine": "1.8.0",
6+
"Engine": "1.8.1",
77
"Newtonsoft.Json": "9.0.1"
88
},
99

0 commit comments

Comments
 (0)