Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 22 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# CHANGELOG

## v0.3.0

### Feature additions

- Added preliminary support for cross-repo code navigation.
scip-ruby can now understand which files belong to which gems (name + version pairs).
- By default, information about external gems will be inferred from
standard filesystem layout. (https://github.com/sourcegraph/scip-ruby/pull/155)
- Optionally, one can specify file to gem mapping explicitly
using a JSON file when using non-standard directory layout. (https://github.com/sourcegraph/scip-ruby/pull/149)
- Information about the current gem can be inferred from
Gemfile.lock and gemspec files on a best-effort basis,
reducing the need to specify the `--gem-metadata` flag explicitly. (https://github.com/sourcegraph/scip-ruby/pull/143)
- Indexes are saved to `index.scip` when the `--index-file` argument is not specified. (https://github.com/sourcegraph/scip-ruby/pull/142)
- Added a new [CLI reference doc](docs/scip-ruby/CLI.md),
which describes scip-ruby flags in more detail and includes examples.

### Sorbet sync

- Updated with changes from upstream Sorbet as of Nov 1 2022. (bc92a0f55897bda974df401a3a1b4d2191e0877b)

## v0.2.0

### Feature additions
Expand All @@ -22,4 +43,4 @@

### Sorbet sync

- Updated with changes from upstream Sorbet as of Sep 23. (3ded54be85d1951f5fc73135912b8c30468adf3b)
- Updated with changes from upstream Sorbet as of Sep 23 2022. (3ded54be85d1951f5fc73135912b8c30468adf3b)
2 changes: 1 addition & 1 deletion scip_indexer/SCIPIndexer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ static uint32_t fnv1a_32(const string &s) {
return h;
}

const char scip_ruby_version[] = "0.2.0";
const char scip_ruby_version[] = "0.3.0";

// Last updated: https://github.com/sourcegraph/scip-ruby/pull/145
const char scip_ruby_sync_upstream_sorbet_sha[] = "bc92a0f55897bda974df401a3a1b4d2191e0877b";
Expand Down