Skip to content
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
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# CHANGELOG

## v0.4.7

Changes the internal symbol structure for local variables
and parameters to be compliant with the [SCIP](https://github.com/sourcegraph/scip) specification.

Sourcegraph 6.9 has stronger validation checks,
which prevents Find references from working correctly
with local variables. This issue is not applicable
to later releases such as Sourcegraph 6.10 or newer.

## v0.4.6

Backports upstream Sorbet fix for crashes for specific
Expand Down
1 change: 0 additions & 1 deletion docs/scip-ruby/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,6 @@ This will correctly use the `scip-ruby/master` branch as the target.

1. Add release notes to the [CHANGELOG](/CHANGELOG.md).
2. Bump `scip_ruby_version` in `SCIPIndexer.cc`.
3. Bump the release version in `Dockerfile.autoindex`.

Run the release script:

Expand Down
2 changes: 1 addition & 1 deletion scip_indexer/SCIPIndexer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ static uint32_t fnv1a_32(const string &s) {
return h;
}

const char scip_ruby_version[] = "0.4.6";
const char scip_ruby_version[] = "0.4.7";

// Last updated: https://github.com/sourcegraph/scip-ruby/pull/217
const char scip_ruby_sync_upstream_sorbet_sha[] = "0a7b175bc0bb41e2672369554f74364e83711a84";
Expand Down
Loading