Author: Aaron Ballman Date: 2023-02-02T08:49:12-05:00 New Revision: 79571aa2103c95760a07e3549d8636379e4948f0
URL: https://github.com/llvm/llvm-project/commit/79571aa2103c95760a07e3549d8636379e4948f0 DIFF: https://github.com/llvm/llvm-project/commit/79571aa2103c95760a07e3549d8636379e4948f0.diff LOG: 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. Added: Modified: clang/include/clang-c/Index.h Removed: ################################################################################ diff --git a/clang/include/clang-c/Index.h b/clang/include/clang-c/Index.h index 4e6de219bbac9..a17a97721de26 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)) _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits