From b7eb8c8921428d2082fdafead0e936181c2232e6 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Tue, 10 Dec 2019 21:50:14 -0800 Subject: [PATCH] Prepare for the next release --- ChangeLog.rst | 15 +++++++++++++++ include/fmt/core.h | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/ChangeLog.rst b/ChangeLog.rst index dd712418..1c34c602 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,3 +1,18 @@ +6.1.2 - TBD +----------- + +* Fixed ABI compatibility with ``libfmt.so.6.0.0``. + +* Fixed handling types convertible to ``std::string_view`` + (`#1451 `_). + Thanks `@denizevrenci (Deniz Evrenci) `_. + +* Made CUDA test an opt-in enabled via the ``FMT_CUDA_TEST`` CMake option. + +* Fixed sign conversion warnings + (`#1440 `_). + Thanks `@0x8000-0000 (Florin Iucha) `_. + 6.1.1 - 2019-12-04 ------------------ diff --git a/include/fmt/core.h b/include/fmt/core.h index 398253cb..9fd8df28 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 60101 +#define FMT_VERSION 60102 #ifdef __has_feature # define FMT_HAS_FEATURE(x) __has_feature(x)