File tree 3 files changed +8
-2
lines changed
3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
3
+ ## v0.3.7
4
+
5
+ Fixes an issue when emitting indexes over 2GB in size,
6
+ which may be hit for codebases over 10M+ SLOC.
7
+ (https://github.com/sourcegraph/scip-ruby/pull/190 )
8
+
3
9
## v0.3.6
4
10
5
11
In debug builds, scip-ruby would sometimes emit spurious log messages.
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ RUN apk add --no-cache bash wget make libstdc++ gcc g++ automake autoconf gcompa
11
11
# because release builds are very time-consuming.
12
12
#
13
13
# The release version is verified by tools/scripts/publish-scip-ruby.sh
14
- RUN wget https://github.com/sourcegraph/scip-ruby/releases/download/scip-ruby-v0.3.6 /scip-ruby-x86_64-linux -O /usr/bin/scip-ruby && chmod +x /usr/bin/scip-ruby
14
+ RUN wget https://github.com/sourcegraph/scip-ruby/releases/download/scip-ruby-v0.3.7 /scip-ruby-x86_64-linux -O /usr/bin/scip-ruby && chmod +x /usr/bin/scip-ruby
15
15
16
16
COPY scip_indexer/autoindex.sh /usr/bin/scip-ruby-autoindex
17
17
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ static uint32_t fnv1a_32(const string &s) {
61
61
return h;
62
62
}
63
63
64
- const char scip_ruby_version[] = " 0.3.6 " ;
64
+ const char scip_ruby_version[] = " 0.3.7 " ;
65
65
66
66
// Last updated: https://github.com/sourcegraph/scip-ruby/pull/175
67
67
const char scip_ruby_sync_upstream_sorbet_sha[] = " 0f6fd90cdf20d507f20dcbe928431dc16d3e1793" ;
You can’t perform that action at this time.
0 commit comments