Commit afa7a45665433278c5a140ef462864b7fde1dc37

Authored by Henry Fredrick Schreiner
1 parent a78f5bcd

Preparing for 1.6.2

CHANGELOG.md
1 1 ## Version 1.6.2: Help-all
2 2  
3   -This version fixes some formatting bugs with help-all. It also adds fixes for several warnings, including an experimental optional error on Clang 7.
  3 +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.
4 4  
5 5 * Fixed help-all formatting [#163]
6 6 * 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
11 11 * Fixed CMake install as subproject with `CLI11_INSTALL` flag. [#156]
12 12 * Fixed warning about local variable hiding class member with MSVC [#157]
13 13 * Fixed compile error with default settings on Clang 7 and libc++ [#158]
  14 +* Fixed special case of `--help` on subcommands (general fix planned for 1.7) [#168]
  15 +* Removing an option with links [#179]
14 16  
15 17 [#156]: https://github.com/CLIUtils/CLI11/issues/156
16 18 [#157]: https://github.com/CLIUtils/CLI11/issues/157
17 19 [#158]: https://github.com/CLIUtils/CLI11/issues/158
18 20 [#163]: https://github.com/CLIUtils/CLI11/pull/163
  21 +[#168]: https://github.com/CLIUtils/CLI11/issues/168
  22 +[#179]: https://github.com/CLIUtils/CLI11/pull/179
  23 +
19 24  
20 25 ## Version 1.6.1: Platform fixes
21 26  
... ...
README.md
... ... @@ -458,6 +458,9 @@ Significant features and/or improvements to the code were contributed by:
458 458 - [Nathan Hourt](https://github.com/nathanhourt)
459 459 - [Sean Fisk](https://github.com/seanfisk)
460 460 - [Stéphane Del Pino](https://github.com/delpinux)
  461 +- [Mak Kolybabi](https://github.com/mogigoma)
  462 +- [Paweł Bylica](https://github.com/chfast)
  463 +
461 464  
462 465 ## License
463 466  
... ...
include/CLI/Version.hpp
... ... @@ -7,7 +7,7 @@
7 7  
8 8 #define CLI11_VERSION_MAJOR 1
9 9 #define CLI11_VERSION_MINOR 6
10   -#define CLI11_VERSION_PATCH 1
11   -#define CLI11_VERSION "1.6.1"
  10 +#define CLI11_VERSION_PATCH 2
  11 +#define CLI11_VERSION "1.6.2"
12 12  
13 13 // [CLI11:verbatim]
... ...