Skip to content

Commit 6b60199

Browse files
authored
fix(ParseResults.ProgramName): Make it public (#231)
1 parent 1dc67c9 commit 6b60199

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

RELEASE_NOTES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### 6.2.1
2+
* Fix `ParseResults.ProgramName` - make it public (cut and paste error in [#229](https://github.com/fsprojects/Argu/pull/229)) [#231](https://github.com/fsprojects/Argu/pull/231)
3+
14
### 6.2.0
25
* Add `ParseResults.ProgramName` [#229](https://github.com/fsprojects/Argu/pull/229)
36
* Add `ParseResults.GetResult(expr, 'Field -> 'R): 'R` as alias for `PostProcessResult`, `ParseResults.GetResults(expr, 'Field -> 'R): 'R list` as alias for `PostProcessResults`, `ParseResults.TryGetResult(expr, 'Field -> 'R): 'R option` as alias for `TryPostProcessResult` [#230](https://github.com/fsprojects/Argu/pull/230)

src/Argu/ParseResults.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ type ParseResults<[<EqualityConditionalOn; ComparisonConditionalOn>]'Template wh
5050
member x.GetAllResults () = x.GetAllResults() |> Seq.map box
5151

5252
member _.ErrorHandler = exiter
53-
member internal _.ProgramName = programName
53+
member _.ProgramName = programName
5454
member internal _.Description = description
5555
member internal _.ArgInfo = argInfo
5656
member internal _.CharacterWidth = usageStringCharWidth

0 commit comments

Comments
 (0)