Commit 291c58789c031208f08f4f261a858b5b7083e8e2

Authored by Henry Schreiner
Committed by GitHub
1 parent 39a5f198

chore: prepare for 2.3.2 (#824)

* chore: prepare for 2.3.2

Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>

* chore: bump versions for 2.3.2

Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>

Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
.appveyor.yml
1   -version: 2.3.1.{build}
  1 +version: 2.3.2.{build}
2 2  
3 3 branches:
4 4 only:
... ...
CHANGELOG.md
... ... @@ -45,6 +45,31 @@ out 100% coverage again to ensure this doesn&#39;t happen again!
45 45 [#793]: https://github.com/CLIUtils/CLI11/pull/793
46 46 [#796]: https://github.com/CLIUtils/CLI11/pull/796
47 47  
  48 +### Version 2.3.2: Minor maintenance
  49 +
  50 +This version provides a few fixes collected over the last three months before
  51 +adding features for 2.4.
  52 +
  53 +- Bugfix: Consistently use ADL for `lexical_cast`, making it easier to extend
  54 + for custom template types [#820][]
  55 +- Bugfix: Tweak the parsing of files for flags with `disable_flag_override`
  56 + [#800][]
  57 +- Bugfix: Handle out of bounds long long [#807][]
  58 +- Bugfix: Spacing of `make_description` min option output [#808][]
  59 +- Bugfix: Print last parsed subcommand's help message [#822][]
  60 +- Bugfix: Avoid floating point warning in GCC 12 [#803][]
  61 +- Bugfix: Fix a few gcc warnings [#813][]
  62 +- Backend: Max CMake tested 3.22 -> 3.24 [#823][]
  63 +
  64 +[#800]: https://github.com/CLIUtils/CLI11/pull/800
  65 +[#803]: https://github.com/CLIUtils/CLI11/pull/803
  66 +[#807]: https://github.com/CLIUtils/CLI11/pull/807
  67 +[#808]: https://github.com/CLIUtils/CLI11/pull/808
  68 +[#813]: https://github.com/CLIUtils/CLI11/pull/813
  69 +[#820]: https://github.com/CLIUtils/CLI11/pull/820
  70 +[#822]: https://github.com/CLIUtils/CLI11/pull/822
  71 +[#823]: https://github.com/CLIUtils/CLI11/pull/823
  72 +
48 73 ## Version 2.2: Option and Configuration Flexibility
49 74  
50 75 New features include support for output of an empty vector, a summing option
... ...
include/CLI/Version.hpp
... ... @@ -10,7 +10,7 @@
10 10  
11 11 #define CLI11_VERSION_MAJOR 2
12 12 #define CLI11_VERSION_MINOR 3
13   -#define CLI11_VERSION_PATCH 1
14   -#define CLI11_VERSION "2.3.1"
  13 +#define CLI11_VERSION_PATCH 2
  14 +#define CLI11_VERSION "2.3.2"
15 15  
16 16 // [CLI11:version_hpp:end]
... ...