From 61e364fa9c09cf3dee82556b163864646d2eee5e Mon Sep 17 00:00:00 2001 From: Yves Fridelance Date: Thu, 26 Feb 2026 16:04:24 +0100 Subject: [PATCH] fix: bump ModuleVersion in .psd1 to 0.1.1 The .psm1 was updated to 0.1.1 but the .psd1 manifest still had 0.1.0. Publish-Module reads the version from the manifest, causing the publish to fail since 0.1.0 was already on PSGallery. Co-Authored-By: Claude Opus 4.6 --- YFridelance.PS.ModuleFactory/YFridelance.PS.ModuleFactory.psd1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/YFridelance.PS.ModuleFactory/YFridelance.PS.ModuleFactory.psd1 b/YFridelance.PS.ModuleFactory/YFridelance.PS.ModuleFactory.psd1 index 628ee98..eda4a08 100644 --- a/YFridelance.PS.ModuleFactory/YFridelance.PS.ModuleFactory.psd1 +++ b/YFridelance.PS.ModuleFactory/YFridelance.PS.ModuleFactory.psd1 @@ -12,7 +12,7 @@ RootModule = 'YFridelance.PS.ModuleFactory.psm1' # Version number of this module. -ModuleVersion = '0.1.0' +ModuleVersion = '0.1.1' # Supported PSEditions # CompatiblePSEditions = @()