Skip to content

Commit d3e542b

Browse files
committed
fix: 🐛 Update module version to 1.7.4 and change verbose message to warning in Publish-PSModule function
1 parent fd1df4f commit d3e542b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
$BuildPSModule = @{
22
Name = 'PSModuleUtils'
3-
Version = '1.7.3'
3+
Version = '1.7.4'
44
Description = 'A module with helper functions to build and publish PowerShell modules to the PSGallery.'
55
Tags = ('PSEdition_Desktop', 'PSEdition_Core', 'Windows')
66
}

src/public/Publish-PSModule.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function Publish-PSModule {
5555
break
5656
}
5757
catch {
58-
Write-Verbose -Message (
58+
Write-Warning -Message (
5959
"Couldn't find published module. Retrying after $($delayInterval[$attempt]) seconds."
6060
)
6161
Start-Sleep -Seconds $delayIntervals[$attempt]

0 commit comments

Comments
 (0)