diff --git a/actions_bootstrap.ps1 b/actions_bootstrap.ps1 index e32db9f..ea6c095 100644 --- a/actions_bootstrap.ps1 +++ b/actions_bootstrap.ps1 @@ -11,17 +11,17 @@ $modulesToInstall = [System.Collections.ArrayList]::new() # https://github.com/PowerShell/Plaster $null = $modulesToInstall.Add(([PSCustomObject]@{ ModuleName = 'Plaster' - ModuleVersion = '1.1.3' + ModuleVersion = '1.1.4' })) # https://github.com/pester/Pester $null = $modulesToInstall.Add(([PSCustomObject]@{ ModuleName = 'Pester' - ModuleVersion = '5.4.0' + ModuleVersion = '5.5.0' })) # https://github.com/nightroman/Invoke-Build $null = $modulesToInstall.Add(([PSCustomObject]@{ ModuleName = 'InvokeBuild' - ModuleVersion = '5.10.2' + ModuleVersion = '5.10.4' })) # https://github.com/PowerShell/PSScriptAnalyzer $null = $modulesToInstall.Add(([PSCustomObject]@{ diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 9d5ab4d..7742df4 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -5,12 +5,19 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [2.0.1] +## [2.0.2] - Catesta template module changes - CI/CD Changes: - Azure: - Updated `testRunner` alias reference to `testResultsFormat` + - Plaster bumped from `1.1.3` to `1.1.4` + - Pester bumped from `5.4.0` to `5.5.0` + - InvokeBuild bumped from `5.10.2` to `5.10.4` +- Catesta primary module changes + - Plaster bumped from `1.1.3` to `1.1.4` + - Pester bumped from `5.4.0` to `5.5.0` + - InvokeBuild bumped from `5.10.2` to `5.10.4` ## [2.0.0] - *breaking changes introduced* diff --git a/docs/Catesta.md b/docs/Catesta.md index 5b91f7b..3d4a350 100644 --- a/docs/Catesta.md +++ b/docs/Catesta.md @@ -2,7 +2,7 @@ Module Name: Catesta Module Guid: 6796b193-9013-468a-b022-837749af2d06 Download Help Link: NA -Help Version: 2.0.1 +Help Version: 2.0.2 Locale: en-US --- diff --git a/src/Catesta/Catesta.psd1 b/src/Catesta/Catesta.psd1 index a937b9f..e77177b 100644 --- a/src/Catesta/Catesta.psd1 +++ b/src/Catesta/Catesta.psd1 @@ -12,7 +12,7 @@ RootModule = 'Catesta.psm1' # Version number of this module. - ModuleVersion = '2.0.1' + ModuleVersion = '2.0.2' # Supported PSEditions # CompatiblePSEditions = @() @@ -54,7 +54,7 @@ RequiredModules = @( @{ ModuleName = 'Plaster' - ModuleVersion = '1.1.3' + ModuleVersion = '1.1.4' }, @{ ModuleName = 'Pester' @@ -190,7 +190,7 @@ Extensions = @( @{ Module = 'Plaster' - MinimumVersion = '1.1.3' + MinimumVersion = '1.1.4' Details = @{ TemplatePaths = @( 'Resources\Module', diff --git a/src/Catesta/Resources/AWS/install_modules.ps1 b/src/Catesta/Resources/AWS/install_modules.ps1 index 7ae0530..bef4658 100644 --- a/src/Catesta/Resources/AWS/install_modules.ps1 +++ b/src/Catesta/Resources/AWS/install_modules.ps1 @@ -59,7 +59,7 @@ elseif ($PLASTER_PARAM_Pester-eq '5') { # https://github.com/pester/Pester $null = $modulesToInstall.Add(([PSCustomObject]@{ ModuleName = 'Pester' - ModuleVersion = '5.4.0' + ModuleVersion = '5.5.0' BucketName = '<%=$PLASTER_PARAM_S3Bucket%>' KeyPrefix = '' })) @@ -68,7 +68,7 @@ $null = $modulesToInstall.Add(([PSCustomObject]@{ %> $null = $modulesToInstall.Add(([PSCustomObject]@{ ModuleName = 'InvokeBuild' - ModuleVersion = '5.10.2' + ModuleVersion = '5.10.4' BucketName = '<%=$PLASTER_PARAM_S3Bucket%>' KeyPrefix = '' })) diff --git a/src/Catesta/Resources/AppVeyor/actions_bootstrap.ps1 b/src/Catesta/Resources/AppVeyor/actions_bootstrap.ps1 index 40efd2c..12564f8 100644 --- a/src/Catesta/Resources/AppVeyor/actions_bootstrap.ps1 +++ b/src/Catesta/Resources/AppVeyor/actions_bootstrap.ps1 @@ -23,7 +23,7 @@ elseif ($PLASTER_PARAM_Pester-eq '5') { # https://github.com/pester/Pester $null = $modulesToInstall.Add(([PSCustomObject]@{ ModuleName = 'Pester' - ModuleVersion = '5.4.0' + ModuleVersion = '5.5.0' })) '@ } @@ -31,7 +31,7 @@ $null = $modulesToInstall.Add(([PSCustomObject]@{ # https://github.com/nightroman/Invoke-Build $null = $modulesToInstall.Add(([PSCustomObject]@{ ModuleName = 'InvokeBuild' - ModuleVersion = '5.10.2' + ModuleVersion = '5.10.4' })) # https://github.com/PowerShell/PSScriptAnalyzer $null = $modulesToInstall.Add(([PSCustomObject]@{ diff --git a/src/Catesta/Resources/Azure/actions_bootstrap.ps1 b/src/Catesta/Resources/Azure/actions_bootstrap.ps1 index 40efd2c..12564f8 100644 --- a/src/Catesta/Resources/Azure/actions_bootstrap.ps1 +++ b/src/Catesta/Resources/Azure/actions_bootstrap.ps1 @@ -23,7 +23,7 @@ elseif ($PLASTER_PARAM_Pester-eq '5') { # https://github.com/pester/Pester $null = $modulesToInstall.Add(([PSCustomObject]@{ ModuleName = 'Pester' - ModuleVersion = '5.4.0' + ModuleVersion = '5.5.0' })) '@ } @@ -31,7 +31,7 @@ $null = $modulesToInstall.Add(([PSCustomObject]@{ # https://github.com/nightroman/Invoke-Build $null = $modulesToInstall.Add(([PSCustomObject]@{ ModuleName = 'InvokeBuild' - ModuleVersion = '5.10.2' + ModuleVersion = '5.10.4' })) # https://github.com/PowerShell/PSScriptAnalyzer $null = $modulesToInstall.Add(([PSCustomObject]@{ diff --git a/src/Catesta/Resources/Bitbucket/actions_bootstrap.ps1 b/src/Catesta/Resources/Bitbucket/actions_bootstrap.ps1 index 40efd2c..12564f8 100644 --- a/src/Catesta/Resources/Bitbucket/actions_bootstrap.ps1 +++ b/src/Catesta/Resources/Bitbucket/actions_bootstrap.ps1 @@ -23,7 +23,7 @@ elseif ($PLASTER_PARAM_Pester-eq '5') { # https://github.com/pester/Pester $null = $modulesToInstall.Add(([PSCustomObject]@{ ModuleName = 'Pester' - ModuleVersion = '5.4.0' + ModuleVersion = '5.5.0' })) '@ } @@ -31,7 +31,7 @@ $null = $modulesToInstall.Add(([PSCustomObject]@{ # https://github.com/nightroman/Invoke-Build $null = $modulesToInstall.Add(([PSCustomObject]@{ ModuleName = 'InvokeBuild' - ModuleVersion = '5.10.2' + ModuleVersion = '5.10.4' })) # https://github.com/PowerShell/PSScriptAnalyzer $null = $modulesToInstall.Add(([PSCustomObject]@{ diff --git a/src/Catesta/Resources/GitHubActions/actions_bootstrap.ps1 b/src/Catesta/Resources/GitHubActions/actions_bootstrap.ps1 index 40efd2c..12564f8 100644 --- a/src/Catesta/Resources/GitHubActions/actions_bootstrap.ps1 +++ b/src/Catesta/Resources/GitHubActions/actions_bootstrap.ps1 @@ -23,7 +23,7 @@ elseif ($PLASTER_PARAM_Pester-eq '5') { # https://github.com/pester/Pester $null = $modulesToInstall.Add(([PSCustomObject]@{ ModuleName = 'Pester' - ModuleVersion = '5.4.0' + ModuleVersion = '5.5.0' })) '@ } @@ -31,7 +31,7 @@ $null = $modulesToInstall.Add(([PSCustomObject]@{ # https://github.com/nightroman/Invoke-Build $null = $modulesToInstall.Add(([PSCustomObject]@{ ModuleName = 'InvokeBuild' - ModuleVersion = '5.10.2' + ModuleVersion = '5.10.4' })) # https://github.com/PowerShell/PSScriptAnalyzer $null = $modulesToInstall.Add(([PSCustomObject]@{ diff --git a/src/Catesta/Resources/GitLab/actions_bootstrap.ps1 b/src/Catesta/Resources/GitLab/actions_bootstrap.ps1 index 40efd2c..12564f8 100644 --- a/src/Catesta/Resources/GitLab/actions_bootstrap.ps1 +++ b/src/Catesta/Resources/GitLab/actions_bootstrap.ps1 @@ -23,7 +23,7 @@ elseif ($PLASTER_PARAM_Pester-eq '5') { # https://github.com/pester/Pester $null = $modulesToInstall.Add(([PSCustomObject]@{ ModuleName = 'Pester' - ModuleVersion = '5.4.0' + ModuleVersion = '5.5.0' })) '@ } @@ -31,7 +31,7 @@ $null = $modulesToInstall.Add(([PSCustomObject]@{ # https://github.com/nightroman/Invoke-Build $null = $modulesToInstall.Add(([PSCustomObject]@{ ModuleName = 'InvokeBuild' - ModuleVersion = '5.10.2' + ModuleVersion = '5.10.4' })) # https://github.com/PowerShell/PSScriptAnalyzer $null = $modulesToInstall.Add(([PSCustomObject]@{ diff --git a/src/Catesta/Resources/Module/plasterManifest.xml b/src/Catesta/Resources/Module/plasterManifest.xml index dd89e51..c33cd3f 100644 --- a/src/Catesta/Resources/Module/plasterManifest.xml +++ b/src/Catesta/Resources/Module/plasterManifest.xml @@ -18,7 +18,7 @@ Catesta 258a61ba-566b-4c3a-8230-c2b6861a1a8d - 2.0.1 + 2.0.2 Catesta Scaffolds a new PowerShell module project Jake Morrison diff --git a/src/Catesta/Resources/Vault/plasterManifest.xml b/src/Catesta/Resources/Vault/plasterManifest.xml index e613d90..dcce753 100644 --- a/src/Catesta/Resources/Vault/plasterManifest.xml +++ b/src/Catesta/Resources/Vault/plasterManifest.xml @@ -6,7 +6,7 @@ Catesta d531e058-52b8-4dd2-8162-01c95d1eb8f7 - 2.0.1 + 2.0.2 Catesta Scaffolds a new PowerShell SecretManagement extension vault module project Jake Morrison