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.