Commit 35828ea6be8d0f64f81ee16e7bfc9af6e6bd38a2

Authored by Henry Fredrick Schreiner
1 parent 45496a83

Preparing for 1.7.1

CHANGELOG.md
  1 +## Version 1.7.1: Quick patch
  2 +
  3 +This version provides a quick patch for a (correct) warning from GCC 8 for the windows options code.
  4 +
  5 +
  6 +* Fix for Windows style option parsing [#201]
  7 +* Improve `add_subcommand` when throwing an exception [#204]
  8 +* Better metadata for Conan package [#202]
  9 +
  10 +[#201]: https://github.com/CLIUtils/CLI11/pull/201
  11 +[#202]: https://github.com/CLIUtils/CLI11/pull/202
  12 +[#204]: https://github.com/CLIUtils/CLI11/pull/204
  13 +
1 14 ## Version 1.7: Parse breakup
2 15  
3 16 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.
... ...
include/CLI/Version.hpp
... ... @@ -7,7 +7,7 @@
7 7  
8 8 #define CLI11_VERSION_MAJOR 1
9 9 #define CLI11_VERSION_MINOR 7
10   -#define CLI11_VERSION_PATCH 0
11   -#define CLI11_VERSION "1.7.0"
  10 +#define CLI11_VERSION_PATCH 1
  11 +#define CLI11_VERSION "1.7.1"
12 12  
13 13 // [CLI11:verbatim]
... ...