Skip to content

0.11.0

Compare
Choose a tag to compare
@vitaut vitaut released this 21 Aug 16:03
· 5879 commits to master since this release
  • 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.