diff --git a/ChangeLog.rst b/ChangeLog.rst index b68e9212..5c6631da 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,6 +1,17 @@ 2.0.0 - TBD ----------- +* Fixed formatting of enums with numeric format specifiers in ``fmt::(s)printf`` + (`#131 `_, + `#139 `_):: + + .. code:: c++ + + enum { ANSWER = 42 }; + fmt::printf("%d", ANSWER); + + Thanks to `@Naios `_. + * Improved compatibility with old versions of MinGW (`#132 `_).