Skip to content

Commit afa7a45

Browse files
committed
Preparing for 1.6.2
1 parent a78f5bc commit afa7a45

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Version 1.6.2: Help-all
22

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.
44

55
* Fixed help-all formatting [#163]
66
* 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
1111
* Fixed CMake install as subproject with `CLI11_INSTALL` flag. [#156]
1212
* Fixed warning about local variable hiding class member with MSVC [#157]
1313
* 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]
1416

1517
[#156]: https://github.com/CLIUtils/CLI11/issues/156
1618
[#157]: https://github.com/CLIUtils/CLI11/issues/157
1719
[#158]: https://github.com/CLIUtils/CLI11/issues/158
1820
[#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+
1924

2025
## Version 1.6.1: Platform fixes
2126

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -458,6 +458,9 @@ Significant features and/or improvements to the code were contributed by:
458458
- [Nathan Hourt](https://github.com/nathanhourt)
459459
- [Sean Fisk](https://github.com/seanfisk)
460460
- [Stéphane Del Pino](https://github.com/delpinux)
461+
- [Mak Kolybabi](https://github.com/mogigoma)
462+
- [Paweł Bylica](https://github.com/chfast)
463+
461464
462465
## License
463466

include/CLI/Version.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
#define CLI11_VERSION_MAJOR 1
99
#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"
1212

1313
// [CLI11:verbatim]

0 commit comments

Comments
 (0)