Skip to content
This repository was archived by the owner on Jul 16, 2026. It is now read-only.

v1.1.1

Choose a tag to compare

@github-actions github-actions released this 10 Jul 09:15
db83999

🩹 [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.psm1scripts/Resolve-PSModuleVersion.Helpers.psm1
  • tests/ResolveVersion.Tests.ps1tests/Resolve-PSModuleVersion.Helpers.Tests.ps1
  • tests/ResolveVersion.Tests.Data.psd1tests/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 two Mock -ModuleName references. Kept the framework Import-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).