diff --git a/CHANGELOG.md b/CHANGELOG.md index e9aa6985..5959bc04 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # scip-clang ChangeLog +## v0.0.3 (testing) + +- Added documentation with adoption tips, including how to + troubleshoot common errors. + (https://github.com/sourcegraph/scip-clang/pull/186) +- JobIDs printed when running `scip-clang` with `--log-level=debug` + are now more informative. + (https://github.com/sourcegraph/scip-clang/pull/189) +- (Dev builds) Added workaround for ENFORCE being hit on encountering + previously unseen files during index merging. + (https://github.com/sourcegraph/scip-clang/pull/194) +- (Dev builds) Fixed an ENFORCE being hit around pre-processor handling. + (https://github.com/sourcegraph/scip-clang/issues/156) + ## v0.0.2 (testing) - Adds support for automatically inferring correct include diff --git a/indexer/Version.h b/indexer/Version.h index 7edd96e2..5b11e2fe 100644 --- a/indexer/Version.h +++ b/indexer/Version.h @@ -15,7 +15,7 @@ constexpr bool debugMode = true; constexpr bool debugMode = false; #endif -#define VERSION "0.0.2" +#define VERSION "0.0.3" #define LLVM_COMMIT \ "b6e344ce91c8796331fca7644eb8c748ac5391ec" // Keep in sync with setup.bzl