1
1
# ChangeLog
2
2
3
+ ## v0.3.1
4
+
5
+ SCIP schema:
6
+
7
+ - Added new `Kind` enum constants to represent more detailed
8
+ information about different pieces of syntax in different languages.
9
+ (https://github.com/sourcegraph/scip/pull/195,
10
+ https://github.com/sourcegraph/scip/pull/208,
11
+ https://github.com/sourcegraph/scip/pull/209)
12
+ - Added new `Language` enum constants.
13
+ (https://github.com/sourcegraph/scip/pull/195,
14
+ https://github.com/sourcegraph/scip/pull/207)
15
+ - Minor documentation improvements.
16
+ (https://github.com/sourcegraph/scip/pull/194,
17
+ https://github.com/sourcegraph/scip/pull/206)
18
+
19
+ scip CLI:
20
+
21
+ - Added a new `--project-root` flag to `scip stats`.
22
+ (https://github.com/sourcegraph/scip/pull/187)
23
+
24
+ Go bindings:
25
+
26
+ - Added missing validation for local symbols when
27
+ parsing a symbol string.
28
+ (https://github.com/sourcegraph/scip/pull/206)
29
+ - Fixed a bug related to escaping in symbol formatting.
30
+ (https://github.com/sourcegraph/scip/pull/186)
31
+ (https://github.com/sourcegraph/scip/pull/206)
32
+ - Fixed a bug in occurrence canonicalization.
33
+ (https://github.com/sourcegraph/scip/pull/180)
34
+ - Fixed some bugs in the new streaming parsing APIs.
35
+ (https://github.com/sourcegraph/scip/pull/176,
36
+ https://github.com/sourcegraph/scip/pull/177)
37
+
38
+ Rust bindings:
39
+
40
+ - Added missing validation for local symbols when
41
+ parsing a symbol string.
42
+ (https://github.com/sourcegraph/scip/pull/206)
43
+
3
44
## v0.3.0
4
45
5
- scip schema:
46
+ SCIP schema:
6
47
7
48
- Several new fields were added:
8
49
[`SymbolInformation.signature_documentation`](https://github.com/sourcegraph/scip/pull/159),
@@ -22,7 +63,9 @@ scip CLI:
22
63
23
64
Go bindings:
24
65
25
- - Adds API for parsing indexes in a streaming fashion.
66
+ - Added new APIs to parse SCIP indexes in a streaming
67
+ fashion at Document granularity. This allows consumers
68
+ to process SCIP indexes with better control over memory usage.
26
69
(https://github.com/sourcegraph/scip/pull/172)
27
70
- Fixed a panic when descriptors are incomplete
28
71
(https://github.com/sourcegraph/scip/pull/171)
0 commit comments