diff --git a/CHANGELOG b/CHANGELOG index bca123d4..6f4d4713 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +# v0.5.5 + * Fixed formatting in help info when flags or options have a long but no short + * Prefer long in usage info when a required option has both long and short # v0.5.4 * Positional arguments that accept multiple values are now displayed correctly in usage and help string with '...' indicating multiple values diff --git a/Cargo.toml b/Cargo.toml index ff86d8f4..fdc7d872 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "clap" -version = "0.5.4" +version = "0.5.5" authors = ["Kevin K. "] exclude = ["docs/*", "examples/*", "claptests/*"] description = "A simple and efficient Command Line Argument Parser"