Skip to content

Commit 43bc08b

Browse files
natemcmasterNate McMaster
authored andcommitted
Update CHANGELOG
1 parent b39a5e5 commit 43bc08b

File tree

1 file changed

+33
-32
lines changed

1 file changed

+33
-32
lines changed

CHANGELOG.md

Lines changed: 33 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -6,82 +6,83 @@ Enhancements:
66
* Fix [#211] by [@rlvandaveer] - honor attributes on classes which implement ValidationAttribute
77

88
Bugs fixed:
9-
* Fix [#207](https://github.com/natemcmaster/CommandLineUtils/issues/207) by [@jcaillon]: Option for the case sensitivity of command names
9+
* Fix [#207] by [@jcaillon]: Option for the case sensitivity of command names
1010

11+
[#207]: https://github.com/natemcmaster/CommandLineUtils/issues/207
1112
[#211]: https://github.com/natemcmaster/CommandLineUtils/issues/211
1213

1314
## [v2.3.1]
1415

1516
Bugs fixed:
16-
* Fix [#203][203] - fix InvalidOperationException thrown during help text generation on Mono
17+
* Fix [#203] - fix InvalidOperationException thrown during help text generation on Mono
1718

18-
[203]: https://github.com/natemcmaster/CommandLineUtils/issues/203
19+
[#203]: https://github.com/natemcmaster/CommandLineUtils/issues/203
1920

2021
## [v2.3.0]
2122

2223
**Dec. 31, 2018**
2324

2425
Enhancements:
25-
* PR [#192][192] by [@TheConstructor]: Add IUnhandledExceptionHandler
26+
* PR [#192] by [@TheConstructor]: Add IUnhandledExceptionHandler
2627

2728
Bugs fixed:
28-
* Fix [#195][195]: don't use Task.Run in generic host
29+
* Fix [#195]: don't use Task.Run in generic host
2930

30-
[192]: https://github.com/natemcmaster/CommandLineUtils/pull/192
31-
[195]: https://github.com/natemcmaster/CommandLineUtils/issues/195
31+
[#192]: https://github.com/natemcmaster/CommandLineUtils/pull/192
32+
[#195]: https://github.com/natemcmaster/CommandLineUtils/issues/195
3233

3334
## [v2.3.0-rc]
3435

3536
Bugs fixed:
36-
* Fix [#189][189] by [@TheConstructor]: fix inference about clustering options for sub-sub-commands
37+
* Fix [#189] by [@TheConstructor]: fix inference about clustering options for sub-sub-commands
3738

3839
Enhancements:
39-
* Fix [#166][166] by [@TheConstructor]: make CommandLineApplication.GetValidationResult() public
40-
* PR [#192][192] by [@TheConstructor]: improve error handling in generic host, and unwrap TargetInvocationException
40+
* Fix [#166] by [@TheConstructor]: make CommandLineApplication.GetValidationResult() public
41+
* PR [#192] by [@TheConstructor]: improve error handling in generic host, and unwrap TargetInvocationException
4142

42-
[189]: https://github.com/natemcmaster/CommandLineUtils/pull/189
43-
[166]: https://github.com/natemcmaster/CommandLineUtils/pull/166
44-
[192]: https://github.com/natemcmaster/CommandLineUtils/pull/192
43+
[#189]: https://github.com/natemcmaster/CommandLineUtils/pull/189
44+
[#166]: https://github.com/natemcmaster/CommandLineUtils/pull/166
45+
[#192]: https://github.com/natemcmaster/CommandLineUtils/pull/192
4546

4647
## [v2.3.0-beta]
4748

4849
Bugs fixed:
4950

50-
* Fix [#86][86] by [@handcraftedsource]: handled nested HelpOptions. Fixes InvalidOperationException when multiple help options were defined.([#158][158])
51-
* Fix [#163][163] - Obsolete CommandOption.Template and fix help text generation to accurately list available options
52-
* [@TheConstructor]: fixed a bug in ConstructorInjectionConvention ([#181][181])
51+
* Fix [#86] by [@handcraftedsource]: handled nested HelpOptions. Fixes InvalidOperationException when multiple help options were defined.([#158])
52+
* Fix [#163] - Obsolete CommandOption.Template and fix help text generation to accurately list available options
53+
* [@TheConstructor]: fixed a bug in ConstructorInjectionConvention ([#181])
5354

54-
[86]: https://github.com/natemcmaster/CommandLineUtils/pull/86
55-
[158]: https://github.com/natemcmaster/CommandLineUtils/pull/158
56-
[163]: https://github.com/natemcmaster/CommandLineUtils/pull/163
57-
[181]: https://github.com/natemcmaster/CommandLineUtils/pull/181
55+
[#86]: https://github.com/natemcmaster/CommandLineUtils/pull/86
56+
[#158]: https://github.com/natemcmaster/CommandLineUtils/pull/158
57+
[#163]: https://github.com/natemcmaster/CommandLineUtils/pull/163
58+
[#181]: https://github.com/natemcmaster/CommandLineUtils/pull/181
5859

5960
Enhancements:
6061

6162
* [@jcaillon]: Add a new API `UnrecognizedCommandParsingException` which includes suggestions for similar options or
62-
commands. ([#164][164])
63-
* Add support counting of bool/flag variables using `bool[]`. ([#143][143])
64-
* [@EricStG]: Add a new API `MissingParameterlessConstructorException` that includes the type causing the exception in the message. ([#148][148])
63+
commands. ([#164])
64+
* Add support counting of bool/flag variables using `bool[]`. ([#143])
65+
* [@EricStG]: Add a new API `MissingParameterlessConstructorException` that includes the type causing the exception in the message. ([#148])
6566
* [@atifaziz]: Add a new API `ValueParser.Create` which makes it easier to create implementations of `IValueParser`
66-
([#169][169])
67-
* [@TheConstructor]: Support injection of IConsole and IConvention in generic host ([#178][178])
67+
([#169])
68+
* [@TheConstructor]: Support injection of IConsole and IConvention in generic host ([#178])
6869

6970

70-
[143]: https://github.com/natemcmaster/CommandLineUtils/pull/143
71-
[164]: https://github.com/natemcmaster/CommandLineUtils/pull/164
72-
[168]: https://github.com/natemcmaster/CommandLineUtils/pull/168
73-
[169]: https://github.com/natemcmaster/CommandLineUtils/pull/169
74-
[178]: https://github.com/natemcmaster/CommandLineUtils/pull/178
71+
[#143]: https://github.com/natemcmaster/CommandLineUtils/pull/143
72+
[#164]: https://github.com/natemcmaster/CommandLineUtils/pull/164
73+
[#168]: https://github.com/natemcmaster/CommandLineUtils/pull/168
74+
[#169]: https://github.com/natemcmaster/CommandLineUtils/pull/169
75+
[#178]: https://github.com/natemcmaster/CommandLineUtils/pull/178
7576

7677
Other notes:
7778
* I adjusted some API released in the alpha - primarily, I removed ParserSettings.
7879

7980
### New package: McMaster.Extensions.Hosting.CommandLine
8081

81-
Thanks to [@lucastheisen] for writing a new package, McMaster.Extensions.Hosting.CommandLine ([#167][167]). This new package provides
82+
Thanks to [@lucastheisen] for writing a new package, McMaster.Extensions.Hosting.CommandLine ([#167]). This new package provides
8283
integration with ASP.NET Core's ["Generic Host" feature.](https://docs.microsoft.com/aspnet/core/fundamentals/host/generic-host).
8384

84-
[167]: https://github.com/natemcmaster/CommandLineUtils/pull/167
85+
[#167]: https://github.com/natemcmaster/CommandLineUtils/pull/167
8586

8687
## [v2.3.0-alpha]
8788

0 commit comments

Comments
 (0)