Skip to content

Commit 90a5883

Browse files
docs: Add CHANGELOG entry for v0.0.2 (#179)
1 parent ced7e7d commit 90a5883

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,23 @@
11
# scip-clang ChangeLog
22

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+
311
## v0.0.1 (testing)
412

513
- Symbols without hover docs will explicitly show "No documentation available".
14+
(https://github.com/sourcegraph/scip-clang/pull/173)
615
- Published binaries should work on Debian Buster and Ubuntu 18.04,
716
instead of requiring Debian Bullseye / Ubuntu 20.04 or newer.
17+
(https://github.com/sourcegraph/scip-clang/pull/174)
818

919
## v0.0.0 (testing)
1020

1121
- Initial release with code nav support for various
1222
language features like macros, #include pragmas, types,
13-
functions, methods, local variables etc.
23+
functions, methods, local variables etc.

indexer/Version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ constexpr bool debugMode = true;
1515
constexpr bool debugMode = false;
1616
#endif
1717

18-
#define VERSION "0.0.1"
18+
#define VERSION "0.0.2"
1919
#define LLVM_COMMIT \
2020
"b6e344ce91c8796331fca7644eb8c748ac5391ec" // Keep in sync with setup.bzl
2121

0 commit comments

Comments
 (0)