File tree Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 1
1
# scip-clang ChangeLog
2
2
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
+
3
17
## v0.0.3 (testing)
4
18
5
19
- Added documentation with adoption tips, including how to
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.3 "
18
+ #define VERSION " 0.0.4 "
19
19
#define LLVM_COMMIT \
20
20
" b6e344ce91c8796331fca7644eb8c748ac5391ec" // Keep in sync with setup.bzl
21
21
@@ -31,4 +31,4 @@ const char full_version_string[] =
31
31
32
32
} // namespace scip_clang
33
33
34
- #endif // SCIP_CLANG_VERSION_H
34
+ #endif // SCIP_CLANG_VERSION_H
You can’t perform that action at this time.
0 commit comments