v1.1.1
🩹 [Patch]: Name the helper module after the action (Resolve-PSModuleVersion.Helpers) (#8)
Aligns the helper module with the action helper-module naming standard: name it after the action (Resolve-PSModuleVersion.Helpers) instead of a generic name.
PR #4 introduced the interim name ResolveVersion to fix the Helpers collision; this brings it to the ecosystem-wide convention (<Action>.Helpers) now that the standard is in place.
Changes
scripts/ResolveVersion.psm1→scripts/Resolve-PSModuleVersion.Helpers.psm1tests/ResolveVersion.Tests.ps1→tests/Resolve-PSModuleVersion.Helpers.Tests.ps1tests/ResolveVersion.Tests.Data.psd1→tests/Resolve-PSModuleVersion.Helpers.Tests.Data.psd1- Updated the entry-script import (
scripts/main.ps1), the test module import, the test data-file path, and the twoMock -ModuleNamereferences. Kept the frameworkImport-Module -Name 'Helpers'.
No runtime logic changed (100% file rename + reference updates).
Validation
Tests pass 131/131 under a simulated Helpers name collision (a second module named Helpers loaded before Invoke-Pester). PSScriptAnalyzer clean apart from the pre-existing PSAvoidUsingWriteHost warnings (unchanged module body).
Part of PSModule/Process-PSModule#364. Standard: the "Name helper modules after the action" rule in the GitHub Actions coding standard (MSXOrg/docs#24).