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.
5
5
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
6
6
and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
7
7
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
+
8
14
## [ 0.7.0] 2025-03-31
9
15
10
16
### Changed
Original file line number Diff line number Diff line change 1
1
@ {
2
2
RootModule = ' PowerShellBuild.psm1'
3
- ModuleVersion = ' 0.7.0 '
3
+ ModuleVersion = ' 0.7.1 '
4
4
GUID = ' 15431eb8-be2d-4154-b8ad-4cb68a488e3d'
5
5
Author = ' Brandon Olin'
6
6
CompanyName = ' Community'
Original file line number Diff line number Diff line change @@ -57,12 +57,11 @@ function Build-PSBuildMarkdown {
57
57
58
58
# ErrorAction set to SilentlyContinue so this command will not overwrite an existing MD file.
59
59
$newMDParams = @ {
60
- Module = $ModuleName
61
- Locale = $Locale
60
+ Module = $ModuleName
61
+ Locale = $Locale
62
62
OutputFolder = [IO.Path ]::Combine($DocsPath , $Locale )
63
- ErrorAction = ' SilentlyContinue'
64
- Verbose = $VerbosePreference
65
- Force = $Overwrite
63
+ ErrorAction = ' SilentlyContinue'
64
+ Verbose = $VerbosePreference
66
65
}
67
66
if ($Overwrite ) {
68
67
$newMDParams.Add (' Force' , $true )
You can’t perform that action at this time.
0 commit comments