Skip to content

Commit

Permalink
docs: Prepare for v0.3.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
varungandhi-src committed Oct 25, 2023
1 parent 50f5b08 commit 14720ac
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 4 deletions.
45 changes: 44 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,46 @@
# 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:
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

0 comments on commit 14720ac

Please sign in to comment.