diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index b71b432..b598ae0 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -5,7 +5,7 @@ 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.7.0] +## [2.8.0] - Catesta template module changes - CI/CD Changes: @@ -24,12 +24,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `buildspec_pwsh_linux.yml` updated to dot net 8. - `buildspec_pwsh_windows.yml` updated to dot net 8. - AWS.Tools.Common bumped from `4.1.133` to `4.1.572` + - GitHub: + - Workflow actions now include the module name in the action name - InvokeBuild bumped from `5.10.5` to `5.11.1` - PSScriptAnalyzer bumped from `1.21.0` to `1.22.0` - Catesta primary module changes - Added additional tests for new AWS changes - InvokeBuild bumped from `5.10.5` to `5.11.1` - PSScriptAnalyzer bumped from `1.21.0` to `1.22.0` + - Documentation updates + - Updated README to use new badge urls for action builds ## [2.4.0] diff --git a/docs/Catesta.md b/docs/Catesta.md index 4353beb..35fd059 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.7.0 +Help Version: 2.8.0 Locale: en-US --- diff --git a/src/Catesta/Catesta.psd1 b/src/Catesta/Catesta.psd1 index 6194ac8..2b51c54 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.7.0' + ModuleVersion = '2.8.0' # Supported PSEditions # CompatiblePSEditions = @() diff --git a/src/Catesta/Resources/GitHubActions/workflows/wf_Linux.yml b/src/Catesta/Resources/GitHubActions/workflows/wf_Linux.yml index 3e9cd96..00e540d 100644 --- a/src/Catesta/Resources/GitHubActions/workflows/wf_Linux.yml +++ b/src/Catesta/Resources/GitHubActions/workflows/wf_Linux.yml @@ -5,7 +5,7 @@ # https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions # https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-powershell # https://github.com/actions/upload-artifact#where-does-the-upload-go -name: ActionsTest-Linux-Build +name: <%=$PLASTER_PARAM_ModuleName%>-Linux on: pull_request: paths-ignore: diff --git a/src/Catesta/Resources/GitHubActions/workflows/wf_MacOS.yml b/src/Catesta/Resources/GitHubActions/workflows/wf_MacOS.yml index e99a7c9..3204ce3 100644 --- a/src/Catesta/Resources/GitHubActions/workflows/wf_MacOS.yml +++ b/src/Catesta/Resources/GitHubActions/workflows/wf_MacOS.yml @@ -5,7 +5,7 @@ # https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions # https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-powershell # https://github.com/actions/upload-artifact#where-does-the-upload-go -name: ActionsTest-MacOS-Build +name: <%=$PLASTER_PARAM_ModuleName%>-MacOS on: pull_request: paths-ignore: diff --git a/src/Catesta/Resources/GitHubActions/workflows/wf_Windows.yml b/src/Catesta/Resources/GitHubActions/workflows/wf_Windows.yml index 8f52972..eb9f1f3 100644 --- a/src/Catesta/Resources/GitHubActions/workflows/wf_Windows.yml +++ b/src/Catesta/Resources/GitHubActions/workflows/wf_Windows.yml @@ -5,7 +5,7 @@ # https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions # https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-powershell # https://github.com/actions/upload-artifact#where-does-the-upload-go -name: ActionsTest-Windows-Build +name: <%=$PLASTER_PARAM_ModuleName%>-Windows-PowerShell on: pull_request: paths-ignore: diff --git a/src/Catesta/Resources/GitHubActions/workflows/wf_Windows_Core.yml b/src/Catesta/Resources/GitHubActions/workflows/wf_Windows_Core.yml index bcf64ec..81d0c06 100644 --- a/src/Catesta/Resources/GitHubActions/workflows/wf_Windows_Core.yml +++ b/src/Catesta/Resources/GitHubActions/workflows/wf_Windows_Core.yml @@ -5,7 +5,7 @@ # https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions # https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-powershell # https://github.com/actions/upload-artifact#where-does-the-upload-go -name: ActionsTest-Windows-pwsh-Build +name: <%=$PLASTER_PARAM_ModuleName%>-Windows-pwsh on: pull_request: paths-ignore: diff --git a/src/Catesta/Resources/Module/plasterManifest.xml b/src/Catesta/Resources/Module/plasterManifest.xml index cfc5995..3f6ec27 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.7.0 + 2.8.0 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 03e8290..89d8764 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.7.0 + 2.8.0 Catesta Scaffolds a new PowerShell SecretManagement extension vault module project Jake Morrison