From 35828ea6be8d0f64f81ee16e7bfc9af6e6bd38a2 Mon Sep 17 00:00:00 2001 From: Henry Fredrick Schreiner Date: Wed, 30 Jan 2019 14:09:02 +0100 Subject: [PATCH] Preparing for 1.7.1 --- CHANGELOG.md | 13 +++++++++++++ include/CLI/Version.hpp | 4 ++-- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f05a12cc..4bfd68c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 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. diff --git a/include/CLI/Version.hpp b/include/CLI/Version.hpp index e4a2c0a1..c86c09c4 100644 --- a/include/CLI/Version.hpp +++ b/include/CLI/Version.hpp @@ -7,7 +7,7 @@ #define CLI11_VERSION_MAJOR 1 #define CLI11_VERSION_MINOR 7 -#define CLI11_VERSION_PATCH 0 -#define CLI11_VERSION "1.7.0" +#define CLI11_VERSION_PATCH 1 +#define CLI11_VERSION "1.7.1" // [CLI11:verbatim]