Skip to content

Commit 35828ea

Browse files
committed
Preparing for 1.7.1
1 parent 45496a8 commit 35828ea

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
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+
114
## Version 1.7: Parse breakup
215

316
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

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 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"
1212

1313
// [CLI11:verbatim]

0 commit comments

Comments
 (0)