From ba6c45a2888384cdb28a03db9e65cc6d105f886d Mon Sep 17 00:00:00 2001 From: Adam Chrapkowski Date: Wed, 4 Feb 2026 20:08:45 +0100 Subject: [PATCH] chore: Prepare for v0.4.8 release --- CHANGELOG.md | 7 +++++++ scip_indexer/SCIPIndexer.cc | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d6049c64..630761dc4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # CHANGELOG +## v0.4.8 + +Fixes a bug where `T::Enum` classes emitted overlapping definitions +for both the class and the synthetic `serialize()` method at the same +source location. +(https://github.com/sourcegraph/scip-ruby/pull/246) + ## v0.4.7 Changes the internal symbol structure for local variables diff --git a/scip_indexer/SCIPIndexer.cc b/scip_indexer/SCIPIndexer.cc index 3f3e4bbf2..b59ec3cfe 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";