Author: Aaron Ballman Date: 2023-02-02T17:02:09+01:00 New Revision: c2f68bc2f08be7202fe6de3ca0361eaa29a753f5
URL: https://github.com/llvm/llvm-project/commit/c2f68bc2f08be7202fe6de3ca0361eaa29a753f5 DIFF: https://github.com/llvm/llvm-project/commit/c2f68bc2f08be7202fe6de3ca0361eaa29a753f5.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. (cherry picked from commit 79571aa2103c95760a07e3549d8636379e4948f0) 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 fd758ddde085d..a3e54285f89fa 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)) _______________________________________________ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits