Skip to content

Commit e212bc7

Browse files
author
Kapil Borle
authored
Prepare release v1.14.1 (#778)
1 parent 7526030 commit e212bc7

File tree

4 files changed

+16
-10
lines changed

4 files changed

+16
-10
lines changed

CHANGELOG.MD

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
## [1.14.0](https://github.com/PowerShell/PSScriptAnalyzer/tree/1.14.0) - 2017-06-09
1+
## [1.14.1](https://github.com/PowerShell/PSScriptAnalyzer/tree/1.14.1) - 2017-06-12
2+
3+
### Fixed
4+
- (#777) `Invoke-Formatter`
5+
- Make the cmdlet parameters positional.
6+
- Updated documentation so that `Get-Help Invoke-Formatter -Syntax` returns a valid syntax.
7+
8+
## [1.14.0](https://github.com/PowerShell/PSScriptAnalyzer/tree/1.14.0) - 2017-06-09
29

310
### Added
411
- (#772) [`Invoke-Formatter`](https://github.com/PowerShell/PSScriptAnalyzer/blob/4f47ef95edd045029628ba9a4079b1dda19f080f/docs/markdown/Invoke-Formatter.md) cmdlet to format PowerShell scripts. The cmdlet takes a script string and a settings file and outputs formatted script string based on the provided settings. If no settings are provided, the formatter uses the default `CodeFormatting` settings, which can be found at `Settings/CodeFormatting.psd1`.

Engine/PSScriptAnalyzer.psd1

+5-6
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.14.0'
14+
ModuleVersion = '1.14.1'
1515

1616
# ID used to uniquely identify this module
1717
GUID = 'd6245802-193d-4068-a631-8863a4342a18'
@@ -87,12 +87,10 @@ PrivateData = @{
8787
ProjectUri = 'https://github.com/PowerShell/PSScriptAnalyzer'
8888
IconUri = ''
8989
ReleaseNotes = @'
90-
### Added
91-
- (#772) `Invoke-Formatter` cmdlet to format PowerShell scripts. The cmdlet takes a script string and a settings file and outputs formatted script string based on the provided settings. If no settings are provided, the formatter uses the default `CodeFormatting` settings, which can be found at `Settings/CodeFormatting.psd1`.
92-
9390
### Fixed
94-
- (#770) `PSUseIdenticalMandatoryParametersForDSC` rule violation extent. The violation extent covers only the relevant function name, which prior the fix would mark the entire script. This prevented rule suppression from working when the suppression is declared inside `Get/Set/Test` functions.
95-
- (#770) `PSUseIdenticalMandatoryParametersForDSC` behavior to look for mandatory parameters in `Get/Set/Test` functions in a script based resource only if they are declared with attributes, `Key` or `Required`, in the corresponding `mof` file.
91+
- (#777) `Invoke-Formatter`
92+
- Make the cmdlet parameters positional.
93+
- Updated documentation so that `Get-Help Invoke-Formatter -Syntax` returns a valid syntax.
9694
'@
9795
}
9896
}
@@ -114,3 +112,4 @@ PrivateData = @{
114112

115113

116114

115+

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.14.0",
3+
"version": "1.14.1",
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.14.0",
3+
"version": "1.14.1",
44
"dependencies": {
55
"System.Management.Automation": "6.0.0-alpha13",
6-
"Engine": "1.14.0",
6+
"Engine": "1.14.1",
77
"Newtonsoft.Json": "9.0.1"
88
},
99

0 commit comments

Comments
 (0)