Skip to content

Commit 291c587

Browse files
authored
chore: prepare for 2.3.2 (#824)
* chore: prepare for 2.3.2 Signed-off-by: Henry Schreiner <[email protected]> * chore: bump versions for 2.3.2 Signed-off-by: Henry Schreiner <[email protected]> Signed-off-by: Henry Schreiner <[email protected]>
1 parent 39a5f19 commit 291c587

File tree

3 files changed

+28
-3
lines changed

3 files changed

+28
-3
lines changed

.appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 2.3.1.{build}
1+
version: 2.3.2.{build}
22

33
branches:
44
only:

CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,31 @@ out 100% coverage again to ensure this doesn't happen again!
4545
[#793]: https://github.com/CLIUtils/CLI11/pull/793
4646
[#796]: https://github.com/CLIUtils/CLI11/pull/796
4747

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+
4873
## Version 2.2: Option and Configuration Flexibility
4974

5075
New features include support for output of an empty vector, a summing option

include/CLI/Version.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
#define CLI11_VERSION_MAJOR 2
1212
#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"
1515

1616
// [CLI11:version_hpp:end]

0 commit comments

Comments
 (0)