Skip to content

Commit

Permalink
updated alias reference in azure pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
techthouhts2 committed Sep 24, 2023
1 parent dfe5292 commit cfdd1b6
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 8 deletions.
7 changes: 7 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ 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]

- Catesta template module changes
- CI/CD Changes:
- Azure:
- Updated `testRunner` alias reference to `testResultsFormat`

## [2.0.0] - *breaking changes introduced*

- Catesta template module changes
Expand Down
2 changes: 1 addition & 1 deletion docs/Catesta.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Module Name: Catesta
Module Guid: 6796b193-9013-468a-b022-837749af2d06
Download Help Link: NA
Help Version: 2.0.0
Help Version: 2.0.1
Locale: en-US
---

Expand Down
2 changes: 1 addition & 1 deletion src/Catesta/Catesta.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = 'Catesta.psm1'

# Version number of this module.
ModuleVersion = '2.0.0'
ModuleVersion = '2.0.1'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down
8 changes: 4 additions & 4 deletions src/Catesta/Resources/Azure/azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ if ($PLASTER_PARAM_AzureOptions -eq 'windows') {
displayName: 'Build and Test - Windows PowerShell'
- task: PublishTestResults@2
inputs:
testRunner: 'NUnit'
testResultsFormat: 'NUnit'
testResultsFiles: '**\Artifacts\testOutput\PesterTests.xml'
testRunTitle: 'ps_winLatest'
failTaskOnFailedTests: true
Expand Down Expand Up @@ -60,7 +60,7 @@ if ($PLASTER_PARAM_AzureOptions -eq 'pwshcore') {
displayName: 'Build and Test - Windows pwsh'
- task: PublishTestResults@2
inputs:
testRunner: 'NUnit'
testResultsFormat: 'NUnit'
testResultsFiles: '**\Artifacts\testOutput\PesterTests.xml'
testRunTitle: 'pwsh_winLatest'
failTaskOnFailedTests: true
Expand Down Expand Up @@ -96,7 +96,7 @@ if ($PLASTER_PARAM_AzureOptions -eq 'linux') {
displayName: 'Build and Test - Linux'
- task: PublishTestResults@2
inputs:
testRunner: 'NUnit'
testResultsFormat: 'NUnit'
testResultsFiles: '**/Artifacts/testOutput/PesterTests.xml'
testRunTitle: 'pwsh_ubuntuLatest'
failTaskOnFailedTests: true
Expand Down Expand Up @@ -132,7 +132,7 @@ if ($PLASTER_PARAM_AzureOptions -eq 'macos') {
displayName: 'Build and Test - macOS'
- task: PublishTestResults@2
inputs:
testRunner: 'NUnit'
testResultsFormat: 'NUnit'
testResultsFiles: '**/Artifacts/testOutput/PesterTests.xml'
testRunTitle: 'pwsh_macOSLatest'
failTaskOnFailedTests: true
Expand Down
2 changes: 1 addition & 1 deletion src/Catesta/Resources/Module/plasterManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<metadata>
<name>Catesta</name>
<id>258a61ba-566b-4c3a-8230-c2b6861a1a8d</id>
<version>2.0.0</version>
<version>2.0.1</version>
<title>Catesta</title>
<description>Scaffolds a new PowerShell module project</description>
<author>Jake Morrison</author>
Expand Down
2 changes: 1 addition & 1 deletion src/Catesta/Resources/Vault/plasterManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<metadata>
<name>Catesta</name>
<id>d531e058-52b8-4dd2-8162-01c95d1eb8f7</id>
<version>2.0.0</version>
<version>2.0.1</version>
<title>Catesta</title>
<description>Scaffolds a new PowerShell SecretManagement extension vault module project</description>
<author>Jake Morrison</author>
Expand Down

0 comments on commit cfdd1b6

Please sign in to comment.