From 79571aa2103c95760a07e3549d8636379e4948f0 Mon Sep 17 00:00:00 2001 From: Aaron Ballman Date: Thu, 2 Feb 2023 08:25:21 -0500 Subject: [PATCH] Bump CINDEX_VERSION_MINOR due to additional APIs 0a51bc731bcc2c27e4fe97957a83642d93d989be added a new API to libclang but forgot to bump the minor version number. There is no reasonable way to test this change, hence the lack of test coverage. --- clang/include/clang-c/Index.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/include/clang-c/Index.h b/clang/include/clang-c/Index.h index 4e6de21..a17a977 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -34,7 +34,7 @@ * compatible, thus CINDEX_VERSION_MAJOR is expected to remain stable. */ #define CINDEX_VERSION_MAJOR 0 -#define CINDEX_VERSION_MINOR 62 +#define CINDEX_VERSION_MINOR 63 #define CINDEX_VERSION_ENCODE(major, minor) (((major)*10000) + ((minor)*1)) -- 2.7.4