diff --git a/CHANGELOG b/CHANGELOG index 0a843ac9..43228490 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,9 @@ # v0.4.18 * Correctly displays subcommand names when printint help, version, or usage (i.e. 'parent-subcommand' for help/version or 'parent subcommand' for usage) + * Fixed bug with arguments required by other arguments, not displaying as + required to the user when printing usage information + * Changed some format!() to .to_owned() for performance reasons # v0.4.17 * Arg values now accept lifetimes other than 'static # v0.4.16 diff --git a/Cargo.toml b/Cargo.toml index be36d449..db58a618 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "clap" -version = "0.4.17" +version = "0.4.18" authors = ["Kevin K. "] exclude = ["docs/*", "examples/*", "claptests/*"] description = "A simple and efficient Command Line Argument Parser"