diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d6049c64..da3bfb96b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # CHANGELOG +## v0.4.8 + +Adds enclosing ranges to SCIP class and method definition occurrences, +allowing consumers to attribute references to their enclosing definitions. +(https://github.com/sourcegraph/scip-ruby/pull/250) + +Fixes a crash when Sorbet assigns empty source locations to synthesized +definitions particularly with Minitest `before` hooks inside `test_each`. +(https://github.com/sourcegraph/scip-ruby/pull/256) + ## v0.4.7 Changes the internal symbol structure for local variables diff --git a/scip_indexer/SCIPIndexer.cc b/scip_indexer/SCIPIndexer.cc index 7d746638e..7b33c0602 100644 --- a/scip_indexer/SCIPIndexer.cc +++ b/scip_indexer/SCIPIndexer.cc @@ -61,7 +61,7 @@ static uint32_t fnv1a_32(const string &s) { return h; } -const char scip_ruby_version[] = "0.4.7"; +const char scip_ruby_version[] = "0.4.8"; // Last updated: https://github.com/sourcegraph/scip-ruby/pull/217 const char scip_ruby_sync_upstream_sorbet_sha[] = "0a7b175bc0bb41e2672369554f74364e83711a84";