From 9aee518f3e36e3e1ed3101cf4c9cb99240de2aab Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sat, 13 Sep 2025 10:51:11 -0700 Subject: [PATCH] Update changelog --- ChangeLog.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 03e240bf..4373958d 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -17,15 +17,6 @@ (https://github.com/fmtlib/fmt/issues/3403, https://github.com/fmtlib/fmt/pull/4456). Thanks @msvetkin. -- Improved C++20 module support - (https://github.com/fmtlib/fmt/pull/4451, - https://github.com/fmtlib/fmt/pull/4459, - https://github.com/fmtlib/fmt/pull/4476, - https://github.com/fmtlib/fmt/pull/4488, - https://github.com/fmtlib/fmt/issues/4491, - https://github.com/fmtlib/fmt/pull/4495). - Thanks @arBmind, @tkhyn, @Mishura4, @anonymouspc and @autoantwort. - - Added `FMT_STATIC_FORMAT` that allows formatting into a string of the exact required size at compile time. @@ -47,6 +38,15 @@ It can be accessed as a C string with `s.c_str()` or as a string view with `s.str()`. +- Improved C++20 module support + (https://github.com/fmtlib/fmt/pull/4451, + https://github.com/fmtlib/fmt/pull/4459, + https://github.com/fmtlib/fmt/pull/4476, + https://github.com/fmtlib/fmt/pull/4488, + https://github.com/fmtlib/fmt/issues/4491, + https://github.com/fmtlib/fmt/pull/4495). + Thanks @arBmind, @tkhyn, @Mishura4, @anonymouspc and @autoantwort. + - Switched to using estimated display width in precision. For example: ```c++