diff --git a/ChangeLog.md b/ChangeLog.md index 8f8075ac..67aa911b 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,3 +1,8 @@ +# 10.2.1 - TBD + +- Fixed ABI compatibility with earlier 10.x versions + (https://github.com/fmtlib/fmt/pull/3786). Thanks @saraedum. + # 10.2.0 - 2024-01-01 - Added support for the `%j` specifier (the number of days) for diff --git a/include/fmt/core.h b/include/fmt/core.h index 94f3f22b..b51c1406 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 100200 +#define FMT_VERSION 100201 #if defined(__clang__) && !defined(__ibmxl__) # define FMT_CLANG_VERSION (__clang_major__ * 100 + __clang_minor__)