From 7c56e11ecfb0a71cdc78ea418b1c9cb1ba7928b7 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Thu, 23 Jun 2022 07:40:56 -0700 Subject: [PATCH] Update changelog --- ChangeLog.rst | 83 ++++++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 76 insertions(+), 7 deletions(-) diff --git a/ChangeLog.rst b/ChangeLog.rst index 68d3d1e9..3c3b0015 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -46,6 +46,17 @@ Thanks `@rbrugo (Riccardo Brugo) `_. +* Made ``fmt::print`` overload for text styles correctly handle UTF-8 + (`#2701 `_). + Thanks `@AlexGuteniev (Alex Guteniev) `_. + +* Improved the implementation of + `Dragonbox `_, the algorithm used for + the default floating-point formatting + (`#2713 `_, + `#2750 `_). + Thanks `@jk-jeon (Junekey Jeon) `_ + * Implemented escaping of wide strings in ranges (`#2904 `_). Thanks `@phprus (Vladislav Shchapov) `_. @@ -55,6 +66,15 @@ (`#2807 `_). Thanks `@rbrugo (Riccardo Brugo) `_. +* Fixed formatting of certain kinds of ranges of ranges + (`#2787 `_). + Thanks `@BRevzin (Barry Revzin) `_. + +* Made ``fmt::join`` compatible with format string compilation + (`#2719 `_, + `#2720 `_). + Thanks `@phprus (Vladislav Shchapov) `_. + * Made compile-time checks work with named arguments of custom types and ``std::ostream`` ``print`` overloads (`#2816 `_, @@ -62,6 +82,15 @@ `#2819 `_). Thanks `@timsong-cpp `_. +* Removed ``make_args_checked`` because it is no longer needed for compile-time + checks (`#2760 `_). + Thanks `@phprus (Vladislav Shchapov) `_. + +* Made access mode of a created file consistent with ``fopen`` by setting + ``S_IWGRP`` and ``S_IWOTH`` + (`#2733 `_). + Thanks `@arogge (Andreas Rogge) `_. + * Removed a redundant buffer resize when formatting to ``std::ostream`` (`#2843 `_). Thanks `@jcelerier (Jean-Michaël Celerier) `_. @@ -71,31 +100,61 @@ Thanks `@davidchisnall (David Chisnall) `_. * Improved documentation - (`#2789 `_, + (`#2706 `_, + `#2712 `_, + `#2789 `_, `#2803 `_, `#2805 `_, `#2815 `_, `#2924 `_). - Thanks `@setoye (Alta) `_, + Thanks `@BRevzin (Barry Revzin) `_, + `@Pokechu22 `_, + `@setoye (Alta) `_, `@rtobar `_, `@rbrugo (Riccardo Brugo) `_, `@anoonD (cre) `_, `@leha-bot (Alex) `_. * Improved build configuration - (`#2836 `_, + (`#2766 `_, + `#2772 `_, + `#2836 `_, `#2852 `_, `#2907 `_, `#2913 `_, `#2914 `_). - Thanks `@mattiasljungstrom (Mattias Ljungström) + Thanks `@kambala-decapitator (Andrey Filipenkov) + `_, + `@mattiasljungstrom (Mattias Ljungström) `_, `@kieselnb (Nick Kiesel) `_, `@nathannaveen `_, `@Vertexwahn `_. * Fixed various warnings and compilation issues - (`#2796 `_, + (`#2408 `_, + `#2507 `_, + `#2715 `_, + `#2722 `_, + `#2724 `_, + `#2725 `_, + `#2726 `_, + `#2728 `_, + `#2732 `_, + `#2742 `_, + `#2746 `_, + `#2754 `_, + `#2755 `_, + `#2758 `_, + `#2761 `_, + `#2762 `_, + `#2763 `_, + `#2765 `_, + `#2770 `_, + `#2779 `_, + `#2782 `_, + `#2783 `_, + `#2796 `_, `#2797 `_, `#2801 `_, `#2802 `_, @@ -112,7 +171,16 @@ `#2937 `_, `#2938 `_, `#2940 `_). - Thanks `@dalboris (Boris Dalstein) `_, + Thanks `@matrackif `_ + `@Tobi823 (Tobias Hellmann) `_, + `@ivan-volnov (Ivan Volnov) `_, + `@VasiliPupkin256 `_, + `@federico-busato (Federico) `_, + `@barcharcraz (Charlie Barto) `_, + `@jk-jeon (Junekey Jeon) `_, + `@HazardyKnusperkeks (Björn Schäpers) + `_, + `@dalboris (Boris Dalstein) `_, `@seanm (Sean McBride) `_, `@gsjaardema (Greg Sjaardema) `_, `@timsong-cpp `_, @@ -494,7 +562,8 @@ `@alexezeder (Alexey Ochapov) `_, `@andrewcorrigan (Andrew Corrigan) `_, `@lucpelletier `_, - `@HazardyKnusperkeks (Björn Schäpers) `_. + `@HazardyKnusperkeks (Björn Schäpers) + `_. 8.0.1 - 2021-07-02 ------------------