diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 3ca79619e..9a8e2a60b 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -1,5 +1,33 @@ # picocli Release Notes +# Picocli 4.4.0 (UNRELEASED) +The picocli community is pleased to announce picocli 4.4.0. + +This release contains bugfixes and enhancements. + +This is the seventy-first public release. +Picocli follows [semantic versioning](http://semver.org/). + +## Table of Contents +* [New and noteworthy](#4.4.0-new) +* [Fixed issues](#4.4.0-fixes) +* [Deprecations](#4.4.0-deprecated) +* [Potential breaking changes](#4.4.0-breaking-changes) + +## New and Noteworthy + + +## Fixed issues +[#1051][#1056] Enhancement: `GenerateCompletion` command no longer needs to be a direct subcommand of the root command. Thanks to [Philippe Charles](https://github.com/charphi) for the pull request. + + +## Deprecations +No features were deprecated in this release. + +## Potential breaking changes +This release has no breaking changes. + + # Picocli 4.3.2 The picocli community is pleased to announce picocli 4.3.2. diff --git a/docs/index.adoc b/docs/index.adoc index 760e644e1..e4202c71f 100644 --- a/docs/index.adoc +++ b/docs/index.adoc @@ -5388,7 +5388,7 @@ The following variables are predefined: |`${COMMAND-FULL-NAME}`| 4.0 | any section of the usage help message for a command| replaced with the fully qualified name of the command (that is, preceded by its parent fully qualified name) |`${PARENT-COMMAND-NAME}`| 4.0 | any section of the usage help message for a command| replaced with the name of its parent command |`${PARENT-COMMAND-FULL-NAME}`| 4.0 | any section of the usage help message for a command| replaced with the fully qualified name of its parent command (that is, preceded by the name(s) of the parent command's ancestor commands) -|`${ROOT-COMMAND-NAME}`| 4.4 | any section of the usage help message for a command| replaced with the name of the root command +|`${ROOT-COMMAND-NAME}`| 4.4 | any section of the usage help message for a command| replaced with the name of the top-level command (in a command suite with subcommands) |=== === Custom Variables