From 495b8bf12e79dc7c09dce14ec97d3c31e52ef784 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sat, 1 Jan 2022 13:56:31 -0800 Subject: [PATCH] Update changelog --- ChangeLog.rst | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/ChangeLog.rst b/ChangeLog.rst index a795b020..d8004e9e 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -94,6 +94,25 @@ Thanks `@alexezeder (Alexey Ochapov) `_. +* Implemented escaping of string range elements. For example: + + .. code:: c++ + + #include + + int main() { + fmt::print("{}", std::vector{"\naan"}; + } + + is now printed as:: + + ["\naan"] + + instead of:: + + [" + aan"] + * Extended ``fmt::join`` to support C++20-only ranges (`#2549 `_). Thanks `@BRevzin (Barry Revzin) `_. @@ -204,6 +223,7 @@ * Improved build configuration and tests (`#2437 `_, `#2558 `_, + `#2648 `_, `#2650 `_, `#2663 `_, `#2677 `_).