Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update release notes #492

Merged
merged 2 commits into from
Dec 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/GettingStarted/getting-started-next-steps.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ new AppRunner<Program>()

`UseDefaultMiddleware` to take advantage of many more additional features, such as
[debug](../Diagnostics/debug-directive.md) directive,
[parse](../Diagnostics/parse-directive) directive,
[time](../Diagnostics/time-directive) directive,
[parse](../Diagnostics/parse-directive.md) directive,
[time](../Diagnostics/time-directive.md) directive,
[ctrl+c support](../OtherFeatures/cancellation.md),
[response files](../ArgumentValues/response-files.md),
and [typo suggestions](../Help/typo-suggestions.md)
Expand Down
4 changes: 4 additions & 0 deletions docs/ReleaseNotes/CommandDotNet.TestTools.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CommandDotNet.TestTools

## 6.0.3

fix async support for `InterceptingSystemConsoleWrites`. It did not property await async command methods.

## 6.0.2

* support dotnet 7
Expand Down
8 changes: 7 additions & 1 deletion docs/ReleaseNotes/CommandDotNet.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CommandDotNet

## 7.0.3

fix async support for `OnRunCompleted` and the `[culture]` directive. They did not property await async command methods.

Thanks to `@Sibusten` for reporting this.

## 7.0.2

support dotnet 7
Expand Down Expand Up @@ -393,7 +399,7 @@ Version 4 is removing obsolete members and changing default behaviors made possi
* make `AppSettings.LongNameAlwaysDefaultsToSymbolName` the only behavior and remove the setting. `LongName` can be removed with `[Option(LongName=null)]`.
* Look for places in your apps where `[Option(ShortName="a")]` with setting a LongName. If you don't want a LongName then add `LongName=null` otherwise the long name will default from the parameter or property name.
* make `AppSettings.GuaranteeOperandOrderInArgumentModels` the only behavior and remove the setting.
* see this [Argument Models section](../Arguments/argument-models/#guaranteeing-the-order-of-arguments) for details
* see this [Argument Models section](../Arguments/argument-models.md#guaranteeing-the-order-of-arguments) for details
* enable [CommandLogger](../Diagnostics/command-logger.md) in `.UseDefaultMiddleware()` as `cmdlog` directive. This can be useful for diagnostics.
* Command.FindOption will throw an exception if the alias is for an operand or subcommand instead of an option. Previously it would return null.

Expand Down
4 changes: 2 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,8 @@ markdown_extensions:
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.escapeall:
nbsp: true
- pymdownx.magiclink
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
mkdocs-material == 9.1.6
mkdocs-material == 9.5.1
Loading