diff --git a/ChangeLog.rst b/ChangeLog.rst index f1c9fc4d..d217e9bd 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -37,7 +37,9 @@ * [Breaking] ``windows.h`` is now included with ``NOMINMAX`` unless ``FMT_WIN_MINMAX`` is defined. This is done to prevent breaking code using ``std::min`` and ``std::max`` and only affects the header-only configuration - (`#152 `_). + (`#152 `_, + `#153 `_, + `#154 `_). Thanks to `@DevO2012 `_. * C++ Format is now available in `Debian `_ GNU/Linux @@ -75,9 +77,13 @@ (`#36 `_, `#75 `_, `#125 `_, + `#160 `_, + `#161 `_, `#162 `_, `#165 `_, `#210 `_). + Thanks to `@syohex (Syohei YOSHIDA) `_ and + bug reporters. * Improved support for custom character types (`#171 `_). @@ -93,6 +99,15 @@ (`#171 `_). Thanks to `@alfps (Alf P. Steinbach) `_. +* Runtime width specification + (`#168 `_): + + .. code:: c++ + + fmt::format("{0:{1}}", 42, 5); // gives " 42" + + Thanks to `@jamboree `_. + * [Breaking] Named arguments (`#169 `_, `#173 `_,