Skip to content

Commit 03f22ec

Browse files
0.7.1: Bugfix (#76)
### Fixes - Fix a bug in `Build-PSBuildMarkdown` where a hashtable item was added twice.
1 parent c8a7d54 commit 03f22ec

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8+
## [0.7.1] 2025-04-01
9+
10+
### Fixes
11+
12+
- Fix a bug in `Build-PSBuildMarkdown` where a hashtable item was added twice.
13+
814
## [0.7.0] 2025-03-31
915

1016
### Changed

PowerShellBuild/PowerShellBuild.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@{
22
RootModule = 'PowerShellBuild.psm1'
3-
ModuleVersion = '0.7.0'
3+
ModuleVersion = '0.7.1'
44
GUID = '15431eb8-be2d-4154-b8ad-4cb68a488e3d'
55
Author = 'Brandon Olin'
66
CompanyName = 'Community'

PowerShellBuild/Public/Build-PSBuildMarkdown.ps1

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,11 @@ function Build-PSBuildMarkdown {
5757

5858
# ErrorAction set to SilentlyContinue so this command will not overwrite an existing MD file.
5959
$newMDParams = @{
60-
Module = $ModuleName
61-
Locale = $Locale
60+
Module = $ModuleName
61+
Locale = $Locale
6262
OutputFolder = [IO.Path]::Combine($DocsPath, $Locale)
63-
ErrorAction = 'SilentlyContinue'
64-
Verbose = $VerbosePreference
65-
Force = $Overwrite
63+
ErrorAction = 'SilentlyContinue'
64+
Verbose = $VerbosePreference
6665
}
6766
if ($Overwrite) {
6867
$newMDParams.Add('Force', $true)

0 commit comments

Comments
 (0)