diff --git a/CHANGELOG.md b/CHANGELOG.md index df12985..39de66c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,8 +5,10 @@ What's changed since v0.3.0: - Engineering: - - Bump PSRule to v2.6.0. - [#158](https://github.com/microsoft/PSRule.Rules.GitHub/pull/158) + - Bump PSRule to v2.7.0. + [#177](https://github.com/microsoft/PSRule.Rules.GitHub/pull/177) + - Bump Pester to v5.4.0. + [#177](https://github.com/microsoft/PSRule.Rules.GitHub/pull/177) - Bump Microsoft.NET.Test.Sdk to v17.4.1. [#175](https://github.com/microsoft/PSRule.Rules.GitHub/pull/175) - Bump coverlet.collector to v3.2.0. diff --git a/modules.json b/modules.json index dd67304..74ab671 100644 --- a/modules.json +++ b/modules.json @@ -1,12 +1,12 @@ { "dependencies": { "PSRule": { - "version": "2.6.0" + "version": "2.7.0" } }, "devDependencies": { "Pester": { - "version": "5.3.3" + "version": "5.4.0" }, "platyPS": { "version": "0.14.2" diff --git a/scripts/dependencies.psm1 b/scripts/dependencies.psm1 index 5584f65..3fb53a3 100644 --- a/scripts/dependencies.psm1 +++ b/scripts/dependencies.psm1 @@ -100,7 +100,7 @@ function CheckVersion { if (([Version]$found.Version) -gt ([Version]$module.Value.version)) { Write-Host -Object "[$group] -- Newer version found $($found.Version)"; $dependencies[$module.Name].version = $found.Version; - $Null = Add-Content -Path $changeNotes -Value "Bump $($module.Name) to $($found.Version)."; + $Null = Add-Content -Path $changeNotes -Value "Bump $($module.Name) to v$($found.Version)."; } else { Write-Host -Object "[$group] -- Already up to date.";