Skip to content

Commit f7ed15c

Browse files
author
Kapil Borle
authored
Merge pull request #745 from PowerShell/kapilmb/v1.11.1
Prepare release v1.11.1
2 parents 6aaa6f4 + b0bb0f5 commit f7ed15c

File tree

4 files changed

+17
-22
lines changed

4 files changed

+17
-22
lines changed

CHANGELOG.MD

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
## [1.11.0](https://github.com/PowerShell/PSScriptAnalyzer/tree/1.11.0) - 2017-03-01
1+
## [1.11.1](https://github.com/PowerShell/PSScriptAnalyzer/tree/1.11.1) - 2017-04-04
2+
### Fixed
3+
- CodeFormatting settings file (#727, #728).
4+
- Whitelisted aliases comparison in AvoidUsingCmdletAliases rule (#739).
5+
- PlaceCloseBrace rule behavior for NewLineAfter option (#741).
6+
- UseConsistentIndentation rule to ignore open brace in magic methods (#744).
7+
8+
## [1.11.0](https://github.com/PowerShell/PSScriptAnalyzer/tree/1.11.0) - 2017-03-01
29
### Added
310
- Built-in settings presets to specify settings from command line (#717). Currently, PSSA ships with `PSGallery`, `CodeFormatting`, `DSC`, and other settings presets. All of them can be found in the `Settings/` directory in the module. To use them just pass them as an argument to the `Settings` parameter. For example, if you want to run rules that *powershellgallery* runs, then use the following command.
411
```powershell

Engine/PSScriptAnalyzer.psd1

+6-18
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.11.0'
14+
ModuleVersion = '1.11.1'
1515

1616
# ID used to uniquely identify this module
1717
GUID = 'd6245802-193d-4068-a631-8863a4342a18'
@@ -87,24 +87,11 @@ PrivateData = @{
8787
ProjectUri = 'https://github.com/PowerShell/PSScriptAnalyzer'
8888
IconUri = ''
8989
ReleaseNotes = @'
90-
### Added
91-
- Built-in settings presets to specify settings from command line (#717). Currently, PSSA ships with `PSGallery`, `CodeFormatting`, `DSC`, and other settings presets. All of them can be found in the `Settings/` directory in the module. To use them just pass them as an argument to the `Settings` parameter. For example, if you want to run rules that *powershellgallery* runs, then use the following command.
92-
```powershell
93-
PS> Invoke-ScriptAnalyzer -Path /path/to/your/module -Settings PSGallery
94-
```
95-
- Argument completion for built-in settings presets (#717).
96-
- Argument completion for `IncludeRule` and `ExcludeRule` parameters (#717).
97-
- Option to `PSCloseBrace` rule to add new line after the brace (#713).
98-
- Option to `PSCloseBrace` rule to ignore expressions that have open and close braces on the same line (#706).
99-
- New rule, PSUseConsistentWhitespace, to check for whitespace style around operators and separators (#702).
100-
10190
### Fixed
102-
- Indentation when pipes precede new lines in a multi-line command expression in `PSUseConsistentIdentation` rule (#705).
103-
- Handling of SubExpressionAsts (`$(...)`) in `PSUseConsistentIdentation` rule (#700).
104-
- Performance issues caused by `get-command` cmdlet (#695).
105-
106-
### Changed
107-
- Settings implementation to decouple it from engine (#717).
91+
- CodeFormatting settings file (#727, #728).
92+
- Whitelisted aliases comparison in AvoidUsingCmdletAliases rule (#739).
93+
- PlaceCloseBrace rule behavior for NewLineAfter option (#741).
94+
- UseConsistentIndentation rule to ignore open brace in magic methods (#744).
10895
'@
10996
}
11097
}
@@ -121,3 +108,4 @@ PS> Invoke-ScriptAnalyzer -Path /path/to/your/module -Settings PSGallery
121108

122109

123110

111+

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

0 commit comments

Comments
 (0)