From b07a90386e19f4d6681f3fab7098483827bb5a3d Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Wed, 25 Dec 2024 07:52:52 -0800 Subject: [PATCH] Update changelog --- ChangeLog.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 5f2c750e..791a7fd1 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -109,6 +109,11 @@ - Fixed compile-time formatting of some string types (https://github.com/fmtlib/fmt/pull/4065). Thanks @torshepherd. +- Made compiled version of `fmt::format_to` work with + `std::back_insert_iterator>` + (https://github.com/fmtlib/fmt/issues/4206, + https://github.com/fmtlib/fmt/pull/4211). Thanks @phprus. + - Added a formatter for `std::reference_wrapper` (https://github.com/fmtlib/fmt/pull/4163, https://github.com/fmtlib/fmt/pull/4164). Thanks @yfeldblum and @phprus. @@ -151,11 +156,6 @@ - Fixed handling of legacy encodings on Windows with GCC (https://github.com/fmtlib/fmt/issues/4162). -- Made compiled version of `fmt::format_to` work with - `std::back_insert_iterator>` - (https://github.com/fmtlib/fmt/issues/4206, - https://github.com/fmtlib/fmt/pull/4211). Thanks @phprus. - - Made `fmt::to_string` take `fmt::basic_memory_buffer` by const reference (https://github.com/fmtlib/fmt/issues/4261, https://github.com/fmtlib/fmt/pull/4262). Thanks @sascha-devel.