1
0
mirror of https://github.com/CLIUtils/CLI11.git synced 2025-04-29 20:23:55 +00:00

Preparing for 1.7.1

This commit is contained in:
Henry Fredrick Schreiner 2019-01-30 14:09:02 +01:00
parent 45496a836a
commit 35828ea6be
2 changed files with 15 additions and 2 deletions

View File

@ -1,3 +1,16 @@
## Version 1.7.1: Quick patch
This version provides a quick patch for a (correct) warning from GCC 8 for the windows options code.
* Fix for Windows style option parsing [#201]
* Improve `add_subcommand` when throwing an exception [#204]
* Better metadata for Conan package [#202]
[#201]: https://github.com/CLIUtils/CLI11/pull/201
[#202]: https://github.com/CLIUtils/CLI11/pull/202
[#204]: https://github.com/CLIUtils/CLI11/pull/204
## Version 1.7: Parse breakup ## Version 1.7: Parse breakup
The parsing procedure now maps much more sensibly to complex, nested subcommand structures. Each phase of the parsing happens on all subcommands before moving on with the next phase of the parse. This allows several features, like required environment variables, to work properly even through subcommand boundaries. The parsing procedure now maps much more sensibly to complex, nested subcommand structures. Each phase of the parsing happens on all subcommands before moving on with the next phase of the parse. This allows several features, like required environment variables, to work properly even through subcommand boundaries.

View File

@ -7,7 +7,7 @@
#define CLI11_VERSION_MAJOR 1 #define CLI11_VERSION_MAJOR 1
#define CLI11_VERSION_MINOR 7 #define CLI11_VERSION_MINOR 7
#define CLI11_VERSION_PATCH 0 #define CLI11_VERSION_PATCH 1
#define CLI11_VERSION "1.7.0" #define CLI11_VERSION "1.7.1"
// [CLI11:verbatim] // [CLI11:verbatim]