diff --git a/ChangeLog.rst b/ChangeLog.rst index a5b776cf..ce65a178 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,3 +1,9 @@ +7.1.2 - TBD +----------- + +* Fixed floating point formatting with large precision + (`#1976 `_). + 7.1.1 - 2020-11-01 ------------------ diff --git a/include/fmt/core.h b/include/fmt/core.h index 60e49425..262a94f9 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -18,7 +18,7 @@ #include // The fmt library version in the form major * 10000 + minor * 100 + patch. -#define FMT_VERSION 70101 +#define FMT_VERSION 70102 #ifdef __clang__ # define FMT_CLANG_VERSION (__clang_major__ * 100 + __clang_minor__)