From ab25a283b89cad1fac12ecc000537d7e99375f4f Mon Sep 17 00:00:00 2001 From: Varun Gandhi Date: Tue, 1 Oct 2024 13:53:09 +0800 Subject: [PATCH] docs: Prepare for v0.4.2 release (#224) --- CHANGELOG.md | 5 +++++ Dockerfile.autoindex | 2 +- scip_indexer/SCIPIndexer.cc | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 41cd8a99c..2580b5ce1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # CHANGELOG +## v0.4.2 + +Fixes a bug where reference data for constants in the `Opus` +namespaces was not emitted correctly. (https://github.com/sourcegraph/scip-ruby/pull/223) + ## v0.4.1 Fixes a bug where Go to definition for enum values would not diff --git a/Dockerfile.autoindex b/Dockerfile.autoindex index e19ad5601..d137a0ee5 100644 --- a/Dockerfile.autoindex +++ b/Dockerfile.autoindex @@ -11,7 +11,7 @@ RUN apk add --no-cache bash wget make libstdc++ gcc g++ automake autoconf gcompa # because release builds are very time-consuming. # # The release version is verified by tools/scripts/publish-scip-ruby.sh -RUN wget https://github.com/sourcegraph/scip-ruby/releases/download/scip-ruby-v0.4.1/scip-ruby-x86_64-linux -O /usr/bin/scip-ruby && chmod +x /usr/bin/scip-ruby +RUN wget https://github.com/sourcegraph/scip-ruby/releases/download/scip-ruby-v0.4.2/scip-ruby-x86_64-linux -O /usr/bin/scip-ruby && chmod +x /usr/bin/scip-ruby COPY scip_indexer/autoindex.sh /usr/bin/scip-ruby-autoindex diff --git a/scip_indexer/SCIPIndexer.cc b/scip_indexer/SCIPIndexer.cc index 48f029605..b0825dec1 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.1"; +const char scip_ruby_version[] = "0.4.2"; // Last updated: https://github.com/sourcegraph/scip-ruby/pull/217 const char scip_ruby_sync_upstream_sorbet_sha[] = "0a7b175bc0bb41e2672369554f74364e83711a84";