Skip to content

Commit e108acd

Browse files
docs: Add CHANGELOG entry for v0.0.4 (#207)
1 parent 093189b commit e108acd

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
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.4 (testing)
4+
5+
- Improved handling and docs for IPC-related errors, such as when
6+
the amount of space available is limited (common in Docker),
7+
as well as when a message size exceeds the IPC buffer size.
8+
(https://github.com/sourcegraph/scip-clang/pull/187)
9+
- Improved error messages when certain assertions are hit in practice.
10+
(https://github.com/sourcegraph/scip-clang/pull/196,
11+
https://github.com/sourcegraph/scip-clang/pull/200,
12+
https://github.com/sourcegraph/scip-clang/pull/205)
13+
- LLVM assertions are turned off in release builds.
14+
scip-ruby's own `ENFORCE` checks are still enabled for debuggability.
15+
(https://github.com/sourcegraph/scip-clang/pull/203)
16+
317
## v0.0.3 (testing)
418

519
- Added documentation with adoption tips, including how to

indexer/Version.h

Lines changed: 2 additions & 2 deletions
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.3"
18+
#define VERSION "0.0.4"
1919
#define LLVM_COMMIT \
2020
"b6e344ce91c8796331fca7644eb8c748ac5391ec" // Keep in sync with setup.bzl
2121

@@ -31,4 +31,4 @@ const char full_version_string[] =
3131

3232
} // namespace scip_clang
3333

34-
#endif // SCIP_CLANG_VERSION_H
34+
#endif // SCIP_CLANG_VERSION_H

0 commit comments

Comments
 (0)