From 35fb69ebe023c1e0f9ae613fceb1290fac8dffa3 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Mon, 7 Aug 2023 10:30:52 -0700 Subject: [PATCH] Update changelog --- ChangeLog.rst | 37 +++++++++++++++++++++++++++++++++---- 1 file changed, 33 insertions(+), 4 deletions(-) diff --git a/ChangeLog.rst b/ChangeLog.rst index ce810086..17c261b6 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -10,6 +10,12 @@ ``std::chrono::seconds`` (`#3430 `_). Thanks `@patlkli (Patrick Geltinger) `_. +* Added formatter for ``std::vector::reference`` and + ``std::bitset::reference``. + (`#3570 `_). + Thanks `@phprus (Vladislav Shchapov) `_ and + `@felix642 (Félix-Antoine Constantin) `_. + * Made the ``formatter`` specialization for ``char*`` const-correct (`#3432 `_). Thanks `@timsong-cpp `_. @@ -31,12 +37,20 @@ * Removed remnants of the Grisu floating-point formatter that has been replaced by Dragonbox in earlier versions. +* Improved the compile-time error for unformattable types + (`#3478 `_). + Thanks `@BRevzin (Barry Revzin) `_. + * Optimized storage of an empty allocator in ``basic_memory_buffer`` (`#3485 `_). Thanks `@Minty-Meeo `_. * Optimized format string compilation. +* Added ``throw_format_error`` to the public API + (`#3551 `_). + Thanks `@mjerabek (Martin Jeřábek) `_. + * Made ``FMT_THROW`` assert even if assertions are disabled when compiling with exceptions disabled (`#3418 `_, `#3439 `_). @@ -63,9 +77,11 @@ * Improved documentation (`#3454 `_, `#3458 `_, - `#3461 `_). + `#3461 `_, + `#3515 `_). Thanks `@zencatalyst (Kasra Hashemi) `_, - `@rlalik `_. + `@rlalik `_, + `@mikecrowe (Mike Crowe) `_. * Improved build and CI configurations (`#3451 `_, @@ -73,10 +89,13 @@ `#3453 `_, `#3459 `_, `#3486 `_, + `#3517 `_, + `#3523 `_, `#3563 `_). Thanks `@joycebrum (Joyce) `_, `@glebm (Gleb Mazovetskiy) `_, `@phprus (Vladislav Shchapov) `_, + `@setoye (Alta) `_, `@abouvier (Alexandre Bouvier) `_. * Fixed various warnings and compilation issues @@ -87,13 +106,23 @@ `#3492 `_, `#3493 `_, `#3496 `_, - `#3508 `_). + `#3508 `_, + `#3542 `_, + `#3544 `_, + `#3549 `_, + `#3550 `_, + `#3552 `_). Thanks `@adesitter (Arnaud Desitter) `_, `@hmbj (Hans-Martin B. Jensen) `_, `@Minty-Meeo `_, `@phprus (Vladislav Shchapov) `_, `@petrmanek (Petr Mánek) `_, - `@TobiSchluter (Tobias Schlüter) `_. + `@TobiSchluter (Tobias Schlüter) `_, + `@kieranclancy (Kieran Clancy) `_, + `@alexeedm (Dmitry Alexeev) `_, + `@jurihock (Jürgen Hock) `_, + `@Ozomahtli `_, + `@razaqq `_. 10.0.0 - 2023-05-09 -------------------