Bump CINDEX_VERSION_MINOR due to additional APIs
authorAaron Ballman <aaron@aaronballman.com>
Thu, 2 Feb 2023 13:25:21 +0000 (08:25 -0500)
committerAaron Ballman <aaron@aaronballman.com>
Thu, 2 Feb 2023 13:49:12 +0000 (08:49 -0500)
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

index 4e6de21..a17a977 100644 (file)
@@ -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))