Skip to content

Commit

Permalink
Bump PSRule dependency to v1.6.0 #200
Browse files Browse the repository at this point in the history
  • Loading branch information
BernieWhite committed Aug 11, 2021
1 parent f740d9a commit 3352083
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 12 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ See [upgrade notes][upgrade-notes] for helpful information when upgrading from p
What's changed since v1.0.0:

- Engineering:
- Bump PSRule dependency to v1.5.0. [#184](https://github.com/microsoft/PSRule-pipelines/issues/184)
- See the [change log](https://github.com/microsoft/PSRule/blob/main/docs/CHANGELOG-v1.md#v150).
- Bump azure-pipelines-task-lib to 3.1.5. [#188](https://github.com/microsoft/PSRule-pipelines/pull/188)
- Bump PSRule dependency to v1.6.0. [#200](https://github.com/microsoft/PSRule-pipelines/issues/200)
- See the [change log](https://github.com/microsoft/PSRule/blob/main/docs/CHANGELOG-v1.md#v160).
- Bump azure-pipelines-task-lib to 3.1.6. [#195](https://github.com/microsoft/PSRule-pipelines/pull/195)

## v1.0.0

Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,8 @@ steps:
## Changes and versioning
Extensions and tasks in this repository will use the [semantic versioning](http://semver.org/) model to declare breaking changes from v1.0.0.
Prior to v1.0.0, breaking changes may be introduced in minor (0.x.0) version increments.
For a list of module changes please see the [change log].
Extensions and tasks in this repository uses [semantic versioning](http://semver.org/) to declare breaking changes.
For a list of module changes please see the [change log](CHANGELOG.md).
## Contributing
Expand Down
3 changes: 1 addition & 2 deletions extension.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,7 @@ steps:
## Changes and versioning
Extensions and tasks in this repository will use the [semantic versioning](http://semver.org/) model to declare breaking changes from v1.0.0.
Prior to v1.0.0, breaking changes may be introduced in minor (0.x.0) version increments.
Extensions and tasks in this repository uses [semantic versioning](http://semver.org/) to declare breaking changes.
For a list of module changes please see the [change log].
## Contributing
Expand Down
6 changes: 3 additions & 3 deletions pipeline.build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -169,10 +169,10 @@ task PSRule NuGet, {
if (!(Test-Path -Path out/dist/ps_modules)) {
$Null = New-Item -Path out/dist/ps_modules -ItemType Directory -Force;
}
if ($Null -eq (Get-InstalledModule -Name PSRule -MinimumVersion 1.5.0 -ErrorAction SilentlyContinue)) {
Install-Module -Name PSRule -Scope CurrentUser -MinimumVersion 1.5.0 -Force;
if ($Null -eq (Get-InstalledModule -Name PSRule -MinimumVersion 1.6.0 -ErrorAction SilentlyContinue)) {
Install-Module -Name PSRule -Scope CurrentUser -MinimumVersion 1.6.0 -Force;
}
Save-Module -Name PSRule -Path out/dist/ps_modules -MinimumVersion 1.5.0;
Save-Module -Name PSRule -Path out/dist/ps_modules -MinimumVersion 1.6.0;
Import-Module -Name PSRule -Verbose:$False;
}

Expand Down
2 changes: 1 addition & 1 deletion ps-project.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ bugs:
url: https://github.com/Microsoft/PSRule-pipelines/issues

modules:
PSRule: ^1.5.0
PSRule: ^1.6.0
VstsTaskSdk: ^0.11.0
PowerShellGet: ^2.2.3

Expand Down

0 comments on commit 3352083

Please sign in to comment.