Skip to content

Commit

Permalink
Revert "[#791][#796] Update release notes."
Browse files Browse the repository at this point in the history
This reverts commit 661a50b
  • Loading branch information
remkop committed Aug 26, 2019
1 parent 03a8b7a commit 655cd2f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ Picocli follows [semantic versioning](http://semver.org/).
* [#794] (Bugfix) Perform topological sort on ArgGroups in annotation processor before wiring up the model to prevent FATAL ERROR in annotation processor: picocli.CommandLine$InitializationException: ArgGroup has no options or positional parameters, and no subgroups.
* [#793] (Bugfix) Argument groups disappear in GraalVM native-image (the generated `reflect-config.json` was missing the `@ArgGroup`-annotated fields). Thanks to [Mike Hearn](https://github.com/mikehearn) for the bug report.
* [#787] (Enhancement) Throw `InitializationException` instead of `StackOverflowError` when subcommand is subclass of itself. Thanks to [Peter Murray-Rust](https://github.com/petermr) for raising this.
* [#791][#796] (Enhancement) Use imperative mood in HelpCommand header. Thanks to [GitFiNeon](https://github.com/gitfineon) for the pull request.
* [#784] (DOC) Update documentation to show custom `IFactory` implementations should fall back to the default factory to enable the creation of collections for `@Option`-annotated methods and fields.
* [#788] (DOC) Add link to GitHub examples in user manual Mixins section. Thanks to [Peter Murray-Rust](https://github.com/petermr) for the suggestion.
* [#789] (DOC) Add example usage help to the user manual Negatable Options section.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/picocli/CommandLine.java
Original file line number Diff line number Diff line change
Expand Up @@ -12366,7 +12366,7 @@ static class AutoHelpMixin {
* and a {@code COMMAND} positional parameter with {@code descriptionKey = "helpCommand.command"}.
* @since 3.0
*/
@Command(name = "help", header = "Display help information about the specified command",
@Command(name = "help", header = "Show help information about the specified command",
synopsisHeading = "%nUsage: ", helpCommand = true,
description = {"%nWhen no COMMAND is given, the usage help for the main command is displayed.",
"If a COMMAND is specified, the help for that command is shown.%n"})
Expand Down

0 comments on commit 655cd2f

Please sign in to comment.