From b2ede9f2de3a919a15d499e9f8c3a9ee6288a2ea Mon Sep 17 00:00:00 2001 From: Varun Gandhi Date: Thu, 15 Jun 2023 13:37:29 +0800 Subject: [PATCH] docs: Add CHANGELOG entry for v0.3.5 --- CHANGELOG.md | 6 ++++++ Dockerfile.autoindex | 2 +- scip_indexer/SCIPIndexer.cc | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f9f4e611..8943b2753 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # CHANGELOG +## v0.3.5 + +- Fixed a bug which caused a segfault in release builds, + and an assertion being hit in debug builds. + (https://github.com/sourcegraph/scip-ruby/pull/183) + ## v0.3.4 - Updated with changes from upstream Sorbet as of June 6 2023. (0f6fd90cdf20d507f20dcbe928431dc16d3e1793) diff --git a/Dockerfile.autoindex b/Dockerfile.autoindex index ea724fd12..3fc0905b9 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.3.4/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.3.5/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 cd4b265d1..7cfffeed1 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.3.4"; +const char scip_ruby_version[] = "0.3.5"; // Last updated: https://github.com/sourcegraph/scip-ruby/pull/175 const char scip_ruby_sync_upstream_sorbet_sha[] = "0f6fd90cdf20d507f20dcbe928431dc16d3e1793";