From def5d983de3a31856bff01c3ea2b65140071dd6a Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Tue, 27 Oct 2015 21:55:57 -0700 Subject: [PATCH] Update ChangeLog.rst --- ChangeLog.rst | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/ChangeLog.rst b/ChangeLog.rst index dfc9c558..2645426d 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,6 +1,22 @@ 2.0.0 - TBD ----------- +* [Breaking] Changed default ``bool`` format to textual, "true" or "false": + + .. code:: c++ + + fmt::print("{}", true); // prints "true" + + To print ``bool`` as a number use numeric format specifier such as ``d``: + + .. code:: c++ + + fmt::print("{:d}", true); // prints "1" + +* Improved support for custom character types + (`#171 `_). + Thanks to `@alfps (Alf P. Steinbach) `_. + * Placed the anonymous namespace within ``fmt`` namespace for the header-only configuration (`#171 `_).