Skip to content

Commit

Permalink
Bump PSRule dependency to v1.0.1 #106 (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
BernieWhite committed Jan 7, 2021
1 parent e5a19e2 commit 60cf693
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .azure-pipelines/azure-pipelines.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
# CI pipeline for PSRule-pipelines

variables:
version: '0.7.0'
version: '0.8.0'
buildConfiguration: 'Release'
publish: 'true'
imageName: 'ubuntu-18.04'

# Use build number format, i.e. 0.7.0-B2010001
# Use build number format, i.e. 0.8.0-B2010001
name: $(version)-B$(date:yyMM)$(rev:rrr)

trigger:
Expand Down
18 changes: 12 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,26 @@ See [upgrade notes][upgrade-notes] for helpful information when upgrading from p

## Unreleased

What's changed since v0.7.0:

- Engineering:
- Bump PSRule dependency to v1.0.1. [#106](https://github.com/microsoft/PSRule-pipelines/issues/106)
- See the [change log](https://github.com/microsoft/PSRule/blob/main/docs/CHANGELOG-v1.md#v101)

## v0.7.0

What's changed since v0.6.0:

- Engineering:
- Updated to PSRule v1.0.0. [#82](https://github.com/microsoft/PSRule-pipelines/issues/82)
- Bump PSRule dependency to v1.0.0. [#82](https://github.com/microsoft/PSRule-pipelines/issues/82)
- See the [change log](https://github.com/microsoft/PSRule/blob/main/docs/CHANGELOG-v1.md#v100)

## v0.6.0

What's changed since v0.5.0:

- Engineering:
- Updated to PSRule v0.21.0. [#72](https://github.com/microsoft/PSRule-pipelines/issues/72)
- Bump PSRule dependency to v0.21.0. [#72](https://github.com/microsoft/PSRule-pipelines/issues/72)
- See the [change log](https://github.com/microsoft/PSRule/blob/main/docs/CHANGELOG-v0.md#v0210)

## v0.5.0
Expand All @@ -32,7 +38,7 @@ What's changed since v0.4.0:
- Path specs included in `.gitignore` are also automatically excluded.
- See [upgrade notes][upgrade-v0.5.0] for details on breaking change.
- Engineering:
- Updated to PSRule v0.20.0. [#54](https://github.com/microsoft/PSRule-pipelines/issues/54)
- Bump PSRule dependency to v0.20.0. [#54](https://github.com/microsoft/PSRule-pipelines/issues/54)
- See the [change log](https://github.com/microsoft/PSRule/blob/main/docs/CHANGELOG-v0.md#v0200)

See [upgrade notes][upgrade-v0.5.0] for helpful information when upgrading from previous versions.
Expand All @@ -44,23 +50,23 @@ See [upgrade notes][upgrade-v0.5.0] for helpful information when upgrading from
What's changed since v0.3.0:

- Engineering:
- Updated to PSRule v0.19.0. [#31](https://github.com/microsoft/PSRule-pipelines/issues/31)
- Bump PSRule dependency to v0.19.0. [#31](https://github.com/microsoft/PSRule-pipelines/issues/31)
- See the [change log](https://github.com/microsoft/PSRule/blob/main/docs/CHANGELOG-v0.md#v0190)

## v0.3.0

What's changed since v0.2.0:

- Engineering:
- Updated to PSRule v0.18.0. [#24](https://github.com/microsoft/PSRule-pipelines/issues/24)
- Bump PSRule dependency to v0.18.0. [#24](https://github.com/microsoft/PSRule-pipelines/issues/24)
- See the [change log](https://github.com/microsoft/PSRule/blob/main/docs/CHANGELOG-v0.md#v0180)

## v0.2.0

What's changed since v0.1.0:

- Engineering:
- Updated to PSRule v0.17.0. [#19](https://github.com/microsoft/PSRule-pipelines/issues/19)
- Bump PSRule dependency to v0.17.0. [#19](https://github.com/microsoft/PSRule-pipelines/issues/19)
- See the [change log](https://github.com/microsoft/PSRule/blob/main/docs/CHANGELOG-v0.md#v0170)
- Bug fixes:
- Fixed examples in documentation referencing outputType instead of outputFormat. [#17](https://github.com/microsoft/PSRule-pipelines/issues/17)
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.0.0 -ErrorAction SilentlyContinue)) {
Install-Module -Name PSRule -Scope CurrentUser -MinimumVersion 1.0.0 -Force;
if ($Null -eq (Get-InstalledModule -Name PSRule -MinimumVersion 1.0.1 -ErrorAction SilentlyContinue)) {
Install-Module -Name PSRule -Scope CurrentUser -MinimumVersion 1.0.1 -Force;
}
Save-Module -Name PSRule -Path out/dist/ps_modules -MinimumVersion 1.0.0;
Save-Module -Name PSRule -Path out/dist/ps_modules -MinimumVersion 1.0.1;
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.0.0
PSRule: ^1.0.1
VstsTaskSdk: ^0.11.0
PowerShellGet: ^2.2.3

Expand Down

0 comments on commit 60cf693

Please sign in to comment.