diff --git a/CHANGELOG.md b/CHANGELOG.md index ba405ea..0b8ade8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ ## Version 1.6.2: Help-all -This version fixes some formatting bugs with help-all. It also adds fixes for several warnings, including an experimental optional error on Clang 7. +This version fixes some formatting bugs with help-all. It also adds fixes for several warnings, including an experimental optional error on Clang 7. Several smaller fixes. * Fixed help-all formatting [#163] * Printing help-all on nested command now fixed (App) @@ -11,11 +11,16 @@ This version fixes some formatting bugs with help-all. It also adds fixes for se * Fixed CMake install as subproject with `CLI11_INSTALL` flag. [#156] * Fixed warning about local variable hiding class member with MSVC [#157] * Fixed compile error with default settings on Clang 7 and libc++ [#158] +* Fixed special case of `--help` on subcommands (general fix planned for 1.7) [#168] +* Removing an option with links [#179] [#156]: https://github.com/CLIUtils/CLI11/issues/156 [#157]: https://github.com/CLIUtils/CLI11/issues/157 [#158]: https://github.com/CLIUtils/CLI11/issues/158 [#163]: https://github.com/CLIUtils/CLI11/pull/163 +[#168]: https://github.com/CLIUtils/CLI11/issues/168 +[#179]: https://github.com/CLIUtils/CLI11/pull/179 + ## Version 1.6.1: Platform fixes diff --git a/README.md b/README.md index 319769f..c03b5e9 100644 --- a/README.md +++ b/README.md @@ -458,6 +458,9 @@ Significant features and/or improvements to the code were contributed by: - [Nathan Hourt](https://github.com/nathanhourt) - [Sean Fisk](https://github.com/seanfisk) - [Stéphane Del Pino](https://github.com/delpinux) +- [Mak Kolybabi](https://github.com/mogigoma) +- [Paweł Bylica](https://github.com/chfast) + ## License diff --git a/include/CLI/Version.hpp b/include/CLI/Version.hpp index 80eaf2a..b2ae864 100644 --- a/include/CLI/Version.hpp +++ b/include/CLI/Version.hpp @@ -7,7 +7,7 @@ #define CLI11_VERSION_MAJOR 1 #define CLI11_VERSION_MINOR 6 -#define CLI11_VERSION_PATCH 1 -#define CLI11_VERSION "1.6.1" +#define CLI11_VERSION_PATCH 2 +#define CLI11_VERSION "1.6.2" // [CLI11:verbatim]