Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Prepare for v0.3.1 release #211

Merged
merged 1 commit into from
Oct 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 45 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,49 @@
# ChangeLog

## v0.3.1

SCIP schema:

- Added new `Kind` enum constants to represent more detailed
information about different pieces of syntax in different languages.
(https://github.com/sourcegraph/scip/pull/195,
https://github.com/sourcegraph/scip/pull/208,
https://github.com/sourcegraph/scip/pull/209)
- Added new `Language` enum constants.
(https://github.com/sourcegraph/scip/pull/195,
https://github.com/sourcegraph/scip/pull/207)
- Minor documentation improvements.
(https://github.com/sourcegraph/scip/pull/194,
https://github.com/sourcegraph/scip/pull/206)

scip CLI:

- Added a new `--project-root` flag to `scip stats`.
(https://github.com/sourcegraph/scip/pull/187)

Go bindings:

- Added missing validation for local symbols when
parsing a symbol string.
(https://github.com/sourcegraph/scip/pull/206)
- Fixed a bug related to escaping in symbol formatting.
(https://github.com/sourcegraph/scip/pull/186)
(https://github.com/sourcegraph/scip/pull/206)
- Fixed a bug in occurrence canonicalization.
(https://github.com/sourcegraph/scip/pull/180)
- Fixed some bugs in the new streaming parsing APIs.
(https://github.com/sourcegraph/scip/pull/176,
https://github.com/sourcegraph/scip/pull/177)

Rust bindings:

- Added missing validation for local symbols when
parsing a symbol string.
(https://github.com/sourcegraph/scip/pull/206)

## v0.3.0

scip schema:
SCIP schema:

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

Go bindings:

- Adds API for parsing indexes in a streaming fashion.
- Added new APIs to parse SCIP indexes in a streaming
fashion at Document granularity. This allows consumers
to process SCIP indexes with better control over memory usage.
(https://github.com/sourcegraph/scip/pull/172)
- Fixed a panic when descriptors are incomplete
(https://github.com/sourcegraph/scip/pull/171)
Expand Down
2 changes: 1 addition & 1 deletion bindings/rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scip"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
license = "Apache-2.0"
description = """
Expand Down
2 changes: 1 addition & 1 deletion cmd/scip/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.0
0.3.1
2 changes: 1 addition & 1 deletion dev/publish-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -euo pipefail
{
if [ -z "${NEW_VERSION:-}" ]; then
echo "error: Missing value for environment variable NEW_VERSION"
echo "hint: Invoke this script as NEW_VERSION=M.N.P ./tools/scripts/publish-release.sh"
echo "hint: Invoke this script as NEW_VERSION=M.N.P ./dev/publish-release.sh"
exit 1
fi

Expand Down
Loading