Skip to content

Commit 6accad6

Browse files
author
Kapil Borle
committed
Make changes for 1.7.0 release
1 parent 1ecdd56 commit 6accad6

File tree

5 files changed

+10
-24
lines changed

5 files changed

+10
-24
lines changed

CHANGELOG.MD

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
## Release v1.6.1
1+
## Release v1.7.0
22

33
Here are some improvements since the last release.
44

5+
- Add support for PowerShell Core
6+
- Tested on PowerShell Core on Windows and Ubuntu 14.04
57
- Fix `SaveDscDependency` switch implementation, which use fail if more than one parameter is given to `Import-DSCResource` dynamic keyword.
68
- Add support for external AST based rule suppression
79
- Fix rule suppression caused by inavlid offsets

Engine/PSScriptAnalyzer.psd1

+3-1
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.6.1'
14+
ModuleVersion = '1.7.0'
1515

1616
# ID used to uniquely identify this module
1717
GUID = 'd6245802-193d-4068-a631-8863a4342a18'
@@ -87,6 +87,8 @@ PrivateData = @{
8787
ProjectUri = 'https://github.com/PowerShell/PSScriptAnalyzer'
8888
IconUri = ''
8989
ReleaseNotes = @'
90+
* Added support for PowerShell on Linux
91+
- SaveDscDependency switch is not functional for PowerShell on Linux
9092
* Added support for external AST based rule suppression.
9193
* Fixed `SaveDscDependency` switch implementation, which use fail if more than one parameter is given to `Import-DSCResource` dynamic keyword.
9294
* Fixed rule suppression caused by inavlid offsets.

Engine/project.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"name": "Microsoft.Windows.PowerShell.ScriptAnalyzer",
3-
"version": "1.0.0-*",
4-
"authors": ["kapilmb"],
3+
"version": "1.7.0",
54
"dependencies": {
65
"System.Management.Automation": "1.0.0-alpha.9.4808"
76
},

README.md

+1-17
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,7 @@
33
Announcements
44
=============
55

6-
###### [Get the latest PSScriptAnalyzer version from PowerShellGallery](https://www.powershellgallery.com/packages/PSScriptAnalyzer)
7-
8-
###### [VSCode-PowerShell has built-in ScriptAnalyzer support](https://marketplace.visualstudio.com/items?itemName=ms-vscode.PowerShell)
9-
10-
###### [ISE-Steroids has ScriptAnalyzer integration](http://www.powertheshell.com/psscriptanalyzer-integration-and-more/)
11-
12-
###### [ISE Add-On for ScriptAnalyzer is available in PowerShellGallery](https://www.powershellgallery.com/packages/ISEScriptAnalyzerAddOn/)
13-
14-
15-
=============
16-
17-
##### ScriptAnalyzer community meeting schedule:
18-
19-
- Next Meeting - June 2, 2016 - 11am to 12pm PDT
20-
- [Meeting Agenda](https://github.com/PowerShell/PSScriptAnalyzer/wiki/Community-Meeting-Agenda)
21-
- [Notes and recordings from earlier meetings](https://github.com/PowerShell/PSScriptAnalyzer/wiki)
22-
6+
###### [PSScriptAnalyzer 1.7.0 also supports PowerShell on Ubuntu 14.04!](https://www.powershellgallery.com/packages/PSScriptAnalyzer)
237

248
=============
259
#####Builds

Rules/project.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
{
22
"name": "Microsoft.Windows.PowerShell.ScriptAnalyzer.BuiltinRules",
3-
"version": "1.0.0-*",
4-
"authors": ["kapilmb"],
3+
"version": "1.7.0",
54
"dependencies": {
65
"System.Management.Automation": "1.0.0-alpha.9.4808",
7-
"Engine": "1.0.0-*"
6+
"Engine": "1.7.0"
87
},
98
"frameworks": {
109
"net451": {

0 commit comments

Comments
 (0)