diff --git a/ChangeLog.rst b/ChangeLog.rst index cdec766f..aa811439 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,3 +1,12 @@ +6.1.1 - TBD +----------- + +* Fixed shared library build on Windows. + +* Added a missing decimal point in exponent notation with trailing zeros. + +* Removed deprecated ``format_arg_store::TYPES``. + 6.1.0 - 2019-12-01 ------------------ diff --git a/include/fmt/core.h b/include/fmt/core.h index e766b3a9..13d74ba8 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -15,7 +15,7 @@ #include // The fmt library version in the form major * 10000 + minor * 100 + patch. -#define FMT_VERSION 60100 +#define FMT_VERSION 60101 #ifdef __has_feature # define FMT_HAS_FEATURE(x) __has_feature(x)