From a5b45dc3898028a9dfcb8bd2ca7394563b1b2e24 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Fri, 23 Oct 2015 07:09:26 -0700 Subject: [PATCH] Update ChangeLog.rst --- ChangeLog.rst | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/ChangeLog.rst b/ChangeLog.rst index e4e6a9bf..f86e2b06 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,8 +1,18 @@ 2.0.0 - TBD ----------- +* Implemented formatting of objects of user-defined types that provide an + overloaded ``std::ostream`` insertion operator (``operator<<``) with + ``fmt::(s)printf`` + (`#201 `_): + + .. code:: c++ + + fmt::printf("The date is %s", Date(2012, 12, 9)); + * Fixed portability issues in tests causing failures on ARM, ppc64, ppc64le - and s390x (`#205 `_). + and s390x (`#202 `_, + `1260297 `_). Thanks to Dave Johansen. * Added an option to disable use of IOStreams when ``FMT_USE_IOSTREAMS``