File tree Expand file tree Collapse file tree 3 files changed +11
-6
lines changed Expand file tree Collapse file tree 3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
66and 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
Original file line number Diff line number Diff line change 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'
Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments