From f1dd2eb3c01f70592c9f45c6329c9e5f8b6ab110 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Tue, 7 Jul 2020 06:24:32 -0700 Subject: [PATCH] Bump version --- ChangeLog.rst | 16 +++++++++++++++- include/fmt/core.h | 2 +- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/ChangeLog.rst b/ChangeLog.rst index 1b329394..4e820424 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,6 +1,20 @@ -7.0.0 - TBD +7.0.1 - TBD ----------- +* Updated the inline version namespace name. + +* Worked around a gcc bug in mangling of alias templates + (`#1753 `_). + +* Fixed a linkage error on Windows + (`#1757 `_). + Thanks `@Kurkin (Dmitry Kurkin) `_. + +* Fixed minor issues with the documentation. + +7.0.0 - 2020-07-06 +------------------ + * Reduced the library size. For example, on macOS a stripped test binary statically linked with {fmt} `shrank from ~368k to less than 100k `_. diff --git a/include/fmt/core.h b/include/fmt/core.h index c4d4cfd6..0b2fdeff 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 70000 +#define FMT_VERSION 70001 #ifdef __clang__ # define FMT_CLANG_VERSION (__clang_major__ * 100 + __clang_minor__)