From ec7b006fab973b15d6327335590ea6d0d4e68e93 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Wed, 4 Mar 2015 18:49:23 -0800 Subject: [PATCH] Update changelog --- ChangeLog.rst | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/ChangeLog.rst b/ChangeLog.rst index 4bddae0a..aa40dfc3 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,3 +1,25 @@ +0.11.0 - 2014-08-21 +------------------- + +* Safe printf implementation with a POSIX extension for positional arguments: + + .. code:: c++ + + fmt::printf("Elapsed time: %.2f seconds", 1.23); + fmt::printf("%1$s, %3$d %2$s", weekday, month, day); + +* Arguments of ``char`` type can now be formatted as integers + (https://github.com/cppformat/cppformat/issues/55): + + .. code:: c++ + + fmt::format("0x{0:02X}", 'a'); + +* Deprecated parts of the API removed. + +* The library is now built and tested on MinGW with Appveyor in addition to + existing test platforms Linux/GCC, OS X/Clang, Windows/MSVC. + 0.10.0 - 2014-07-01 ------------------- @@ -118,8 +140,7 @@ "Failed to open file '': No such file or directory" if file doesn't exist. -* Support for `AppVeyor `_ - continuous integration platform. +* Support for AppVeyor continuous integration platform. * ``Format`` now throws ``SystemError`` in case of I/O errors.