From 02af5beb8a025cbac94e93da060789556c785316 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Wed, 4 Dec 2019 10:22:07 -0800 Subject: [PATCH] Bump version and update changelog --- ChangeLog.rst | 9 +++++++++ include/fmt/core.h | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) 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)