File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 1
1
# scip-clang ChangeLog
2
2
3
+ ## v0.2.2 (beta)
4
+
5
+ - Fixes a bug where hover docs would be incorrect if a forward
6
+ declaration with some doc comments preceded the actual definition
7
+ in lexical order after pre-processing.
8
+ (https://github.com/sourcegraph/scip-clang/pull/390 )
9
+ - Adds automatic skipping for compilation database entries which
10
+ do not correspond to translation units, such as those for header files.
11
+ Some compilation database generators like grailbio's generator
12
+ for Bazel can generate compilation databases where over 80% entries
13
+ do not correspond to TUs.
14
+ (https://github.com/sourcegraph/scip-clang/pull/380 )
15
+
3
16
## v0.2.1 (beta)
4
17
5
18
- Fixes a bug where the base compiler was not located correctly,
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ constexpr bool debugMode = true;
15
15
constexpr bool debugMode = false ;
16
16
#endif
17
17
18
- #define VERSION " 0.2.1 "
18
+ #define VERSION " 0.2.2 "
19
19
#define LLVM_COMMIT \
20
20
" e0f3110b854a476c16cce7b44472cd7838d344e9" // Keep synced with fetch_deps.bzl
21
21
You can’t perform that action at this time.
0 commit comments