1
0
mirror of https://github.com/CLIUtils/CLI11.git synced 2025-04-30 20:53:52 +00:00

chore: prepare for 2.4.1 (#1001)

Quick release fixing the missing header.

---------

Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Philip Top <phlptp@gmail.com>
This commit is contained in:
Henry Schreiner 2024-02-07 22:13:27 -05:00 committed by GitHub
parent cf6092bd88
commit f4d0731ceb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 18 additions and 2 deletions

View File

@ -66,6 +66,22 @@ config file processing, and a few other edge cases not previously observed.
[#980]: https://github.com/CLIUtils/CLI11/pull/980
[#987]: https://github.com/CLIUtils/CLI11/pull/987
### Version 2.4.1: Missing header
A transitive include that might be present in some standard libraries is now
included directly. This also fixes a test on architectures that need libatomic
linked and fix an inadvertent breaking change regarding unused defaults for
config files
- Bugfix: Include cstdint [#996][]
- Bugfix: Fix change in operation of config_ptr with unused default in the count
method [#1003][]
- Tests: Include libatomic if required for fuzzing test [#1000][]
[#996]: https://github.com/CLIUtils/CLI11/pull/996
[#1000]: https://github.com/CLIUtils/CLI11/pull/1000
[#1003]: https://github.com/CLIUtils/CLI11/pull/1003
## Version 2.3: Precompilation Support
This version adds a pre-compiled mode to CLI11, which allows you to precompile

View File

@ -10,7 +10,7 @@
#define CLI11_VERSION_MAJOR 2
#define CLI11_VERSION_MINOR 4
#define CLI11_VERSION_PATCH 0
#define CLI11_VERSION "2.4.0"
#define CLI11_VERSION_PATCH 1
#define CLI11_VERSION "2.4.1"
// [CLI11:version_hpp:end]