Skip to content

Commit d0fb761

Browse files
docs: Add CHANGELOG entry for v0.0.9 (#264)
1 parent 479162c commit d0fb761

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# scip-clang ChangeLog
22

3+
## v0.0.9 (alpha)
4+
5+
- Fixed an issue where indexes over the size of 2GB would cause
6+
a crash in the driver. The fix has been tested against Chromium,
7+
where the SCIP index is about 6GB.
8+
(https://github.com/sourcegraph/scip-clang/pull/256)
9+
- Fixed an issue where the driver would wait for workers to exit
10+
even if the workers had already exited earlier.
11+
This removes an NCPU second delay at the end of indexing.
12+
(https://github.com/sourcegraph/scip-clang/pull/262)
13+
- Added support for tracing using [Perfetto](https://perfetto.dev/).
14+
(https://github.com/sourcegraph/scip-clang/pull/260,
15+
https://github.com/sourcegraph/scip-clang/pull/261)
16+
317
## v0.0.8 (alpha)
418

519
- Fixed two issues where relative paths in a compilation database

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
# scip-clang: SCIP indexer for C and C++
22

33
Status: scip-clang currently supports single-repository precise code navigation
4-
for C and C++. It is ready for early adopters, with codebases smaller than 15M SLOC.
5-
Larger codebases may run into a [Protobuf limit on message sizes](https://stackoverflow.com/q/34128872/2682729)
6-
([tracking issue for fix](https://github.com/sourcegraph/scip/issues/143)).
4+
for C and C++.
75

86
Here are some code navigation examples in [llvm/llvm-project](https://sourcegraph.com/github.com/llvm/llvm-project):
97
- [Find references for #include](https://sourcegraph.com/github.com/llvm/llvm-project@97a03eb2eb5acf269db6253fe540626b52950f97/-/blob/llvm/include/llvm/ADT/SmallSet.h?L1:1-1:81#tab=references)

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.8"
18+
#define VERSION "0.0.9"
1919
#define LLVM_COMMIT \
2020
"e0f3110b854a476c16cce7b44472cd7838d344e9" // Keep synced with fetch_deps.bzl
2121

0 commit comments

Comments
 (0)