File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 1
1
# scip-clang ChangeLog
2
2
3
+ ## v0.0.2 (testing)
4
+
5
+ - Adds support for automatically inferring correct include
6
+ directories for gcc/g++. This means that the indexer will
7
+ correctly find standard library headers even when a
8
+ ` compile_commands.json ` file refers to gcc/g++ instead of clang.
9
+ (https://github.com/sourcegraph/scip-clang/pull/178 )
10
+
3
11
## v0.0.1 (testing)
4
12
5
13
- Symbols without hover docs will explicitly show "No documentation available".
14
+ (https://github.com/sourcegraph/scip-clang/pull/173 )
6
15
- Published binaries should work on Debian Buster and Ubuntu 18.04,
7
16
instead of requiring Debian Bullseye / Ubuntu 20.04 or newer.
17
+ (https://github.com/sourcegraph/scip-clang/pull/174 )
8
18
9
19
## v0.0.0 (testing)
10
20
11
21
- Initial release with code nav support for various
12
22
language features like macros, #include pragmas, types,
13
- functions, methods, local variables etc.
23
+ functions, methods, local variables etc.
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.0.1 "
18
+ #define VERSION " 0.0.2 "
19
19
#define LLVM_COMMIT \
20
20
" b6e344ce91c8796331fca7644eb8c748ac5391ec" // Keep in sync with setup.bzl
21
21
You can’t perform that action at this time.
0 commit comments