|
2 | 2 |
|
3 | 3 | [Unreleased changes](https://github.com/natemcmaster/CommandLineUtils/compare/v3.0.0...HEAD):
|
4 | 4 |
|
| 5 | +* [@scott-xu]: feature: add API for setting default value on options and arguments, and display them in help text ([#389]) |
| 6 | + |
| 7 | +[#389]: https://github.com/natemcmaster/CommandLineUtils/pull/389 |
| 8 | + |
| 9 | +## [v3.1.0](https://github.com/natemcmaster/CommandLineUtils/compare/v3.0.0...v3.1.0) |
| 10 | + |
| 11 | +### Improvements |
| 12 | + |
| 13 | +* [@scott-xu]: Show allowed values in help text ([#369]) |
| 14 | +* [@scott-xu]: Generic Hosting: add overload of RunCommandLineApplicationAsync to support configuring of CommandLineApplication<T> ([#363]) |
| 15 | +* [@danielmeza]: implement API on host builder to fetch CommandLineContext from non DI contexts ([#368]) |
| 16 | + |
| 17 | +### Bug fixes |
| 18 | +* [@natemcmaster]: ensure clustering options is detected correctly when subcommands added via AddSubcommand ([#393]) |
| 19 | +* [@scott-xu]: make UnrecognizedArgumentHandling per command scope ([#371]) |
| 20 | +* [@scott-xu]: show allowed values in help text correctly when multiple `AllowedValuesAttribute` are used ([#375]) |
| 21 | +* [@scott-xu]: show allowed values in help text for Nullable/ValueTuple<bool,T> option/argument ([#390]) |
| 22 | +* [@scott-xu]: update help text to show allowed values from `AllowedValues` attribute instead of Enum values ([#391]) |
| 23 | + |
| 24 | +### Docs |
| 25 | +* [@chaami]: Fix Readme.md on Prompt.GetYesNo ([#402]) |
| 26 | +* [@cuperman007] docs: added using statements to code sample in index.md ([#384]) |
| 27 | +* [@scott-xu]: Fix broken links in docs ([#377]) |
| 28 | +* [@scott-xu]: cleanup: add a period to end sentences for built-in descriptions ([#364]) |
| 29 | + |
| 30 | +### Other |
| 31 | + |
| 32 | +* [@natemcmaster]: Change default branch to 'main' ([#373]) |
| 33 | +* [@natemcmaster]: Stop code signing binaries and packages ([#379]) |
| 34 | +* [@natemcmaster]: add dotnet-format to CI, and other code/project file cleanups |
| 35 | + |
| 36 | + |
| 37 | +[#363]: https://github.com/natemcmaster/CommandLineUtils/pull/363 |
| 38 | +[#364]: https://github.com/natemcmaster/CommandLineUtils/pull/364 |
| 39 | +[#367]: https://github.com/natemcmaster/CommandLineUtils/pull/367 |
| 40 | +[#368]: https://github.com/natemcmaster/CommandLineUtils/pull/368 |
| 41 | +[#369]: https://github.com/natemcmaster/CommandLineUtils/pull/369 |
| 42 | +[#371]: https://github.com/natemcmaster/CommandLineUtils/pull/371 |
| 43 | +[#373]: https://github.com/natemcmaster/CommandLineUtils/pull/373 |
| 44 | +[#375]: https://github.com/natemcmaster/CommandLineUtils/pull/375 |
| 45 | +[#377]: https://github.com/natemcmaster/CommandLineUtils/pull/377 |
| 46 | +[#379]: https://github.com/natemcmaster/CommandLineUtils/pull/379 |
| 47 | +[#384]: https://github.com/natemcmaster/CommandLineUtils/pull/384 |
| 48 | +[#390]: https://github.com/natemcmaster/CommandLineUtils/pull/390 |
| 49 | +[#391]: https://github.com/natemcmaster/CommandLineUtils/pull/391 |
| 50 | +[#393]: https://github.com/natemcmaster/CommandLineUtils/pull/393 |
| 51 | +[#402]: https://github.com/natemcmaster/CommandLineUtils/pull/402 |
| 52 | + |
5 | 53 | ## [v3.0.0](https://github.com/natemcmaster/CommandLineUtils/compare/v2.6.0...v3.0.0)
|
6 | 54 |
|
7 | 55 | ### Improvements
|
@@ -433,25 +481,29 @@ Other:
|
433 | 481 |
|
434 | 482 | [@atifaziz]: https://github.com/atifaziz
|
435 | 483 | [@atruskie]: https://github.com/atruskie
|
436 |
| -[@bording]: https://github.com/bording |
437 | 484 | [@bjorg]: https://github.com/bjorg
|
| 485 | +[@bording]: https://github.com/bording |
| 486 | +[@chaami]: https://github.com/chaami |
438 | 487 | [@couven92]: https://github.com/couven92
|
| 488 | +[@cuperman007]: https://github.com/cuperman007 |
| 489 | +[@danielmeza]: https://github.com/danielmeza |
439 | 490 | [@demosdemon]: https://github.com/demosdemon
|
440 |
| -[@EricStG]: https://github.com/EricStG |
441 | 491 | [@ejball]: https://github.com/ejball
|
| 492 | +[@EricStG]: https://github.com/EricStG |
442 | 493 | [@handcraftedsource]: https://github.com/handcraftedsource
|
443 | 494 | [@IanG]: https://github.com/IanG
|
444 | 495 | [@jcaillon]: https://github.com/jcaillon
|
445 | 496 | [@jerriep]: https://github.com/jerriep
|
446 | 497 | [@kant2002]: https://github.com/kant2002
|
447 | 498 | [@kyle-rader]: https://github.com/kyle-rader
|
448 |
| -[@lucastheisen]: https://github.com/lucastheisen |
449 | 499 | [@liamdawson]: https://github.com/liamdawson
|
| 500 | +[@lucastheisen]: https://github.com/lucastheisen |
450 | 501 | [@lvermeulen]: https://github.com/lvermeulen
|
451 | 502 | [@MadbHatter]: https://github.com/MadbHatter
|
452 | 503 | [@mpipo]: https://github.com/mpipo
|
453 | 504 | [@rlvandaveer]: https://github.com/rlvandaveer
|
454 | 505 | [@rmcc13]: https://github.com/rmcc13
|
| 506 | +[@scott-xu]: https://github.com/scott-xu |
455 | 507 | [@SeanFeldman]: https://github.com/SeanFeldman
|
456 | 508 | [@sebastienros]: https://github.com/sebastienros
|
457 | 509 | [@SteveBenz]: https://github.com/SteveBenz
|
|
0 commit comments