diff --git a/CHANGELOG.md b/CHANGELOG.md index c4e46ea65..8293b13de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/include/CLI/Version.hpp b/include/CLI/Version.hpp index 7e9db02a6..2008e91d8 100644 --- a/include/CLI/Version.hpp +++ b/include/CLI/Version.hpp @@ -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]