From 5cf2342aa2d96d397fb9fc3a6f1a64ea249d4539 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Tue, 9 May 2023 15:00:36 -0700 Subject: [PATCH] Bump version --- ChangeLog.rst | 2 +- include/fmt/core.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ChangeLog.rst b/ChangeLog.rst index bc36b685..0f79fc1f 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -128,7 +128,7 @@ `#3222 `_). Thanks `@phprus (Vladislav Shchapov) `_. -* Improved validation of format specifiers for `std::chrono::duration` +* Improved validation of format specifiers for ``std::chrono::duration`` (`#3219 `_, `#3232 `_). Thanks `@ShawnZhong (Shawn Zhong) `_. diff --git a/include/fmt/core.h b/include/fmt/core.h index 06477a81..46723d59 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -17,7 +17,7 @@ #include // The fmt library version in the form major * 10000 + minor * 100 + patch. -#define FMT_VERSION 90101 +#define FMT_VERSION 100000 #if defined(__clang__) && !defined(__ibmxl__) # define FMT_CLANG_VERSION (__clang_major__ * 100 + __clang_minor__) @@ -175,7 +175,7 @@ #ifndef FMT_BEGIN_NAMESPACE # define FMT_BEGIN_NAMESPACE \ namespace fmt { \ - inline namespace v9 { + inline namespace v10 { # define FMT_END_NAMESPACE \ } \ }