Skip to content

Commit 51f0dab

Browse files
Merge pull request #174 from PowershellFrameworkCollective/development
2.2.11.139
2 parents 9ea2259 + 91a63a7 commit 51f0dab

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

PSModuleDevelopment/PSModuleDevelopment.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
# Version number of this module.
77

8-
ModuleVersion = '2.2.11.138'
8+
ModuleVersion = '2.2.11.139'
99

1010
# ID used to uniquely identify this module
1111
GUID = '37dd5fce-e7b5-4d57-ac37-832055ce49d6'

PSModuleDevelopment/changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 2.2.11.139 (2022-04-29)
4+
5+
+ Fix: Invoke-PSMDTemplate - fails to generate templates on PS 5.1, due to splatting vs. explicitly bound parameter (#172)
6+
37
## 2.2.11.138 (2022-04-19)
48

59
+ New: Template MiniModule - a scaffold for a minimal dependencies module

PSModuleDevelopment/functions/templating/Invoke-PSMDTemplate.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@
412412
)
413413
$msgParam = @{ Level = 'Verbose'; FunctionName = 'Invoke-PSMDTemplate' }
414414
foreach ($item in $TemplateResult | Sort-Object { $_.FullPath.Length }) {
415-
Write-PSFMessage @msgParam -Message "Creating file: $($item.FullPath)" -FunctionName Invoke-PSMDTemplate -ModuleName PSModuleDevelopment -Tag 'create', 'template'
415+
Write-PSFMessage @msgParam -Message "Creating file: $($item.FullPath)" -Tag 'create', 'template'
416416
if (-not (Test-Path $item.Path)) {
417417
Write-PSFMessage -Level Verbose -Message "Creating Folder $($item.Path)"
418418
$null = New-Item -Path $item.Path -ItemType Directory

0 commit comments

Comments
 (0)