Skip to content

Commit c1b2f60

Browse files
docs: Prepare for v0.3.1 release (#211)
1 parent 50f5b08 commit c1b2f60

File tree

4 files changed

+48
-5
lines changed

4 files changed

+48
-5
lines changed

CHANGELOG.md

+45-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,49 @@
11
# ChangeLog
22

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+
344
## v0.3.0
445

5-
scip schema:
46+
SCIP schema:
647

748
- Several new fields were added:
849
[`SymbolInformation.signature_documentation`](https://github.com/sourcegraph/scip/pull/159),
@@ -22,7 +63,9 @@ scip CLI:
2263

2364
Go bindings:
2465

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.
2669
(https://github.com/sourcegraph/scip/pull/172)
2770
- Fixed a panic when descriptors are incomplete
2871
(https://github.com/sourcegraph/scip/pull/171)

bindings/rust/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "scip"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = """

cmd/scip/version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.3.0
1+
0.3.1

dev/publish-release.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -euo pipefail
55
{
66
if [ -z "${NEW_VERSION:-}" ]; then
77
echo "error: Missing value for environment variable NEW_VERSION"
8-
echo "hint: Invoke this script as NEW_VERSION=M.N.P ./tools/scripts/publish-release.sh"
8+
echo "hint: Invoke this script as NEW_VERSION=M.N.P ./dev/publish-release.sh"
99
exit 1
1010
fi
1111

0 commit comments

Comments
 (0)