C++ Format v0.11.0 Release Notes

Release Date: 2014-08-21 // over 9 years ago
    • ๐Ÿ–จ 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 (Issue #55 <https://github.com/fmtlib/fmt/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.