0.11.0
-
Safe printf implementation with a POSIX extension for positional arguments:
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 (#55):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.