From 291c58789c031208f08f4f261a858b5b7083e8e2 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Tue, 3 Jan 2023 19:12:23 -0500 Subject: [PATCH] chore: prepare for 2.3.2 (#824) * chore: prepare for 2.3.2 Signed-off-by: Henry Schreiner * chore: bump versions for 2.3.2 Signed-off-by: Henry Schreiner Signed-off-by: Henry Schreiner --- .appveyor.yml | 2 +- CHANGELOG.md | 25 +++++++++++++++++++++++++ include/CLI/Version.hpp | 4 ++-- 3 files changed, 28 insertions(+), 3 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 08bba18c3..2e66aa5ca 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -1,4 +1,4 @@ -version: 2.3.1.{build} +version: 2.3.2.{build} branches: only: diff --git a/CHANGELOG.md b/CHANGELOG.md index e20369fdf..4fc3ccdd1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -45,6 +45,31 @@ out 100% coverage again to ensure this doesn't happen again! [#793]: https://github.com/CLIUtils/CLI11/pull/793 [#796]: https://github.com/CLIUtils/CLI11/pull/796 +### Version 2.3.2: Minor maintenance + +This version provides a few fixes collected over the last three months before +adding features for 2.4. + +- Bugfix: Consistently use ADL for `lexical_cast`, making it easier to extend + for custom template types [#820][] +- Bugfix: Tweak the parsing of files for flags with `disable_flag_override` + [#800][] +- Bugfix: Handle out of bounds long long [#807][] +- Bugfix: Spacing of `make_description` min option output [#808][] +- Bugfix: Print last parsed subcommand's help message [#822][] +- Bugfix: Avoid floating point warning in GCC 12 [#803][] +- Bugfix: Fix a few gcc warnings [#813][] +- Backend: Max CMake tested 3.22 -> 3.24 [#823][] + +[#800]: https://github.com/CLIUtils/CLI11/pull/800 +[#803]: https://github.com/CLIUtils/CLI11/pull/803 +[#807]: https://github.com/CLIUtils/CLI11/pull/807 +[#808]: https://github.com/CLIUtils/CLI11/pull/808 +[#813]: https://github.com/CLIUtils/CLI11/pull/813 +[#820]: https://github.com/CLIUtils/CLI11/pull/820 +[#822]: https://github.com/CLIUtils/CLI11/pull/822 +[#823]: https://github.com/CLIUtils/CLI11/pull/823 + ## Version 2.2: Option and Configuration Flexibility New features include support for output of an empty vector, a summing option diff --git a/include/CLI/Version.hpp b/include/CLI/Version.hpp index e418ebe9e..d5c817a9c 100644 --- a/include/CLI/Version.hpp +++ b/include/CLI/Version.hpp @@ -10,7 +10,7 @@ #define CLI11_VERSION_MAJOR 2 #define CLI11_VERSION_MINOR 3 -#define CLI11_VERSION_PATCH 1 -#define CLI11_VERSION "2.3.1" +#define CLI11_VERSION_PATCH 2 +#define CLI11_VERSION "2.3.2" // [CLI11:version_hpp:end]