Skip to content

Commit ec2111c

Browse files
author
Kapil Borle
authored
Merge pull request #756 from PowerShell/kapilmb/v1.12.0
Prepare release v1.12.0
2 parents cca9a2d + 3d8ef0d commit ec2111c

File tree

4 files changed

+22
-9
lines changed

4 files changed

+22
-9
lines changed

CHANGELOG.MD

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
1-
## [1.11.1](https://github.com/PowerShell/PSScriptAnalyzer/tree/1.11.1) - 2017-04-04
1+
## [1.12.0](https://github.com/PowerShell/PSScriptAnalyzer/tree/1.11.1) - 2017-05-09
2+
3+
### Added
4+
- [PSAlignAssignmentRuleStatement](https://github.com/PowerShell/PSScriptAnalyzer/blob/cca9a2d7ee35be7322f8c5a09b6c500a0a8bd101/RuleDocumentation/AlignAssignmentStatement.md) rule to align assignment statements in property value pairs (#753).
5+
6+
### Fixed
7+
- `PSAvoidGlobalVars` rule to ignore `$global:lastexitcode` (#752).
8+
- `PSUseConsistentIndentation` to account for backtick on preceding line (#749).
9+
- `PSPlaceCloseBrace` to ignore one-line blocks when `NewLineAfter` switch is on (#748).
10+
11+
## [1.11.1](https://github.com/PowerShell/PSScriptAnalyzer/tree/1.11.1) - 2017-04-04
212
### Fixed
313
- CodeFormatting settings file (#727, #728).
414
- Whitelisted aliases comparison in AvoidUsingCmdletAliases rule (#739).

Engine/PSScriptAnalyzer.psd1

Lines changed: 8 additions & 5 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.11.1'
14+
ModuleVersion = '1.12.0'
1515

1616
# ID used to uniquely identify this module
1717
GUID = 'd6245802-193d-4068-a631-8863a4342a18'
@@ -87,11 +87,13 @@ PrivateData = @{
8787
ProjectUri = 'https://github.com/PowerShell/PSScriptAnalyzer'
8888
IconUri = ''
8989
ReleaseNotes = @'
90+
### Added
91+
- PSAlignAssignmentRuleStatement rule to align assignment statements in property value pairs (#753).
92+
9093
### Fixed
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).
94+
- `PSAvoidGlobalVars` rule to ignore `$global:lastexitcode` (#752).
95+
- `PSUseConsistentIndentation` to account for backtick on preceding line (#749).
96+
- `PSPlaceCloseBrace` to ignore one-line blocks when `NewLineAfter` switch is on (#748).
9597
'@
9698
}
9799
}
@@ -109,3 +111,4 @@ PrivateData = @{
109111

110112

111113

114+

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

0 commit comments

Comments
 (0)