Commit 189546b82a93214a47bb113d728ba5aa6c969a6a
Committed by
Henry Schreiner
1 parent
87494a22
Bump version to 1.5.4
Showing
2 changed files
with
5 additions
and
2 deletions
CHANGELOG.md
| @@ -63,6 +63,9 @@ Other changes: | @@ -63,6 +63,9 @@ Other changes: | ||
| 63 | [#121]: https://github.com/CLIUtils/CLI11/pull/121 | 63 | [#121]: https://github.com/CLIUtils/CLI11/pull/121 |
| 64 | [#126]: https://github.com/CLIUtils/CLI11/pull/126 | 64 | [#126]: https://github.com/CLIUtils/CLI11/pull/126 |
| 65 | 65 | ||
| 66 | +### Version 1.5.4: Optionals | ||
| 67 | +This version fixes the optional search in the single file version; some macros were not yet defined when it did the search. You can define the `CLI11_*_OPTIONAL` macros to 0 if needed to eliminate the search. | ||
| 68 | + | ||
| 66 | ### Version 1.5.3: Compiler compatibility | 69 | ### Version 1.5.3: Compiler compatibility |
| 67 | This version fixes older AppleClang compilers by removing the optimization for casting. The minimum version of Boost Optional supported has been clarified to be 1.58. CUDA 7.0 NVCC is now supported. | 70 | This version fixes older AppleClang compilers by removing the optimization for casting. The minimum version of Boost Optional supported has been clarified to be 1.58. CUDA 7.0 NVCC is now supported. |
| 68 | 71 |
include/CLI/Version.hpp
| @@ -7,7 +7,7 @@ | @@ -7,7 +7,7 @@ | ||
| 7 | 7 | ||
| 8 | #define CLI11_VERSION_MAJOR 1 | 8 | #define CLI11_VERSION_MAJOR 1 |
| 9 | #define CLI11_VERSION_MINOR 5 | 9 | #define CLI11_VERSION_MINOR 5 |
| 10 | -#define CLI11_VERSION_PATCH 3 | ||
| 11 | -#define CLI11_VERSION "1.5.3" | 10 | +#define CLI11_VERSION_PATCH 4 |
| 11 | +#define CLI11_VERSION "1.5.4" | ||
| 12 | 12 | ||
| 13 | // [CLI11:verbatim] | 13 | // [CLI11:verbatim] |