Skip to content

Commit f4d0731

Browse files
henryiiipre-commit-ci[bot]phlptp
authored
chore: prepare for 2.4.1 (#1001)
Quick release fixing the missing header. --------- Signed-off-by: Henry Schreiner <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Philip Top <[email protected]>
1 parent cf6092b commit f4d0731

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,22 @@ config file processing, and a few other edge cases not previously observed.
6666
[#980]: https://github.com/CLIUtils/CLI11/pull/980
6767
[#987]: https://github.com/CLIUtils/CLI11/pull/987
6868

69+
### Version 2.4.1: Missing header
70+
71+
A transitive include that might be present in some standard libraries is now
72+
included directly. This also fixes a test on architectures that need libatomic
73+
linked and fix an inadvertent breaking change regarding unused defaults for
74+
config files
75+
76+
- Bugfix: Include cstdint [#996][]
77+
- Bugfix: Fix change in operation of config_ptr with unused default in the count
78+
method [#1003][]
79+
- Tests: Include libatomic if required for fuzzing test [#1000][]
80+
81+
[#996]: https://github.com/CLIUtils/CLI11/pull/996
82+
[#1000]: https://github.com/CLIUtils/CLI11/pull/1000
83+
[#1003]: https://github.com/CLIUtils/CLI11/pull/1003
84+
6985
## Version 2.3: Precompilation Support
7086

7187
This version adds a pre-compiled mode to CLI11, which allows you to precompile

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 4
13-
#define CLI11_VERSION_PATCH 0
14-
#define CLI11_VERSION "2.4.0"
13+
#define CLI11_VERSION_PATCH 1
14+
#define CLI11_VERSION "2.4.1"
1515

1616
// [CLI11:version_hpp:end]

0 commit comments

Comments
 (0)