diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e61ec69f..a5d17bbde 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # CHANGELOG +## v0.3.2 + +### Auto-indexing + +(Sourcegraph-use only) + +The auto-indexing script will run `bundle install` +for non-Sorbet repos to fetch dependencies before invoking +the indexer. (https://github.com/sourcegraph/scip-ruby/pull/165) + +### Sorbet sync + +- Updated with changes from upstream Sorbet as of Nov 21 2022. (b8461dbcd56ba56b2854d07f546c7216b31b58e6) + ## v0.3.1 No user-facing changes; this is a synthetic release diff --git a/Dockerfile.autoindex b/Dockerfile.autoindex index 823f21738..47621a35c 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.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.3.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 8ec3ba0ce..4cbd3aa7e 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.1"; +const char scip_ruby_version[] = "0.3.2"; // Last updated: https://github.com/sourcegraph/scip-ruby/pull/168 const char scip_ruby_sync_upstream_sorbet_sha[] = "b8461dbcd56ba56b2854d07f546c7216b31b58e6";