From 2cfc12a3203e15c03aee54875f511e36d9bb6d5a Mon Sep 17 00:00:00 2001 From: Emi Date: Wed, 2 Sep 2026 17:55:56 -0700 Subject: [PATCH 1/2] chore: prepare v0.4.8 release Signed-off-by: Emi --- CHANGELOG.md | 10 ++++++++++ scip_indexer/SCIPIndexer.cc | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d6049c64..7b8376aa7 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, including Minitest `before` hooks inside `test_each`. +(https://github.com/sourcegraph/scip-ruby/pull/254) + ## 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"; From e4ba8843d0270798bdb7b8d33c3c0e20b4afbd69 Mon Sep 17 00:00:00 2001 From: Emi Date: Thu, 3 Sep 2026 09:03:21 -0700 Subject: [PATCH 2/2] update link --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b8376aa7..da3bfb96b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,8 +7,8 @@ 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, including Minitest `before` hooks inside `test_each`. -(https://github.com/sourcegraph/scip-ruby/pull/254) +definitions particularly with Minitest `before` hooks inside `test_each`. +(https://github.com/sourcegraph/scip-ruby/pull/256) ## v0.4.7