File tree Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change 1
1
# scip-clang ChangeLog
2
2
3
+ ## v0.1.1 (beta)
4
+
5
+ - Significantly improved code navigation
6
+ for code using the following language features:
7
+ - ` using ` declarations
8
+ (https://github.com/sourcegraph/scip-clang/pull/304 ,
9
+ https://github.com/sourcegraph/scip-clang/pull/305 ,
10
+ https://github.com/sourcegraph/scip-clang/pull/306 )
11
+ - Dependent names (due to use of templates inside templated code)
12
+ (https://github.com/sourcegraph/scip-clang/pull/295 ,
13
+ https://github.com/sourcegraph/scip-clang/pull/300 )
14
+ - Function-local types
15
+ (https://github.com/sourcegraph/scip-clang/pull/292 )
16
+ - Method overloads
17
+ (https://github.com/sourcegraph/scip-clang/pull/287 )
18
+ - Templated free functions
19
+ (https://github.com/sourcegraph/scip-clang/pull/291 )
20
+ - Fixed a bug where hover docs from a forward declaration
21
+ would be preferred over the docs on the definition.
22
+ (https://github.com/sourcegraph/scip-clang/pull/298 )
23
+
3
24
## v0.1.0 (beta)
4
25
5
26
- The Linux release build uses ThinLTO,
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.1.0 "
18
+ #define VERSION " 0.1.1 "
19
19
#define LLVM_COMMIT \
20
20
" e0f3110b854a476c16cce7b44472cd7838d344e9" // Keep synced with fetch_deps.bzl
21
21
You can’t perform that action at this time.
0 commit comments