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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# ChangeLog

## v0.7.1

Go bindings:

- Render external symbols in snapshot outputs.
(https://github.com/scip-code/scip/pull/390)
- Render `display_name` and `signature_documentation` in snapshots.
(https://github.com/scip-code/scip/pull/391)

## v0.7.0

General:
Expand Down
2 changes: 1 addition & 1 deletion bindings/haskell/scip.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cabal-version: 3.6

name: scip
version: 0.7.0
version: 0.7.1
synopsis: Haskell bindings for SCIP Code Intelligence Protocol
license: Apache-2.0
license-file: LICENSE
Expand Down
2 changes: 1 addition & 1 deletion bindings/rust/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bindings/rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scip"
version = "0.7.0"
version = "0.7.1"
edition = "2021"
license = "Apache-2.0"
description = """
Expand Down
2 changes: 1 addition & 1 deletion bindings/typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@scip-code/scip",
"version": "0.7.0",
"version": "0.7.1",
"description": "Generated TypeScript definitions for the Semantic Code Intelligence Protocol.",
"repository": "https://github.com/scip-code/scip/bindings/typescript",
"author": "Sourcegraph",
Expand Down
2 changes: 1 addition & 1 deletion cmd/scip/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.7.0
0.7.1
23 changes: 16 additions & 7 deletions docs/CLI.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ USAGE:
scip [global options] command [command options] [arguments...]

VERSION:
v0.7.0
v0.7.1

DESCRIPTION:
For more details, see the project README at:
Expand Down Expand Up @@ -55,6 +55,9 @@ DESCRIPTION:

You may want to filter the output using `grep -v <pattern>`
to narrow down on certain classes of errors.

OPTIONS:
--help, -h show help
```

## `scip print`
Expand Down Expand Up @@ -95,12 +98,14 @@ DESCRIPTION:
along with 'git diff' or equivalent, or you can use the dedicated
'test' subcommand for more targeted checks.


OPTIONS:
--from value Path to SCIP index file (default: "index.scip")
--to value Path to output directory for snapshot files (default: "scip-snapshot")
--project-root value Override project root in the SCIP file. For example, this can be helpful when the SCIP index was created inside a Docker image or created on another computer
--project-root value Override project root in the SCIP file. This can be helpful when the SCIP index was created on another computer
--strict If true, fail fast on errors (default: true)
--comment-syntax value Comment syntax to use for snapshot files (default: "//")
--help, -h show help
```

## `scip test`
Expand All @@ -113,11 +118,12 @@ USAGE:
scip test [command options] [arguments...]

DESCRIPTION:
Validates whether the SCIP data as
in a given SCIP index matches that specified in human-readable test files,
using syntax similar to the 'snapshot subcommand'. Test file syntax reference:
Validates whether the SCIP data present in an index
matches that specified in human-readable test files, using syntax
similar to the 'snapshot' subcommand. Test file syntax reference:

https://github.com/scip-code/scip/blob/v0.7.0/docs/test_file_format.md
https://github.com/scip-code/scip/blob/v0.7.1
/docs/test_file_format.md

The test files are located based on the relative_path field
in the SCIP document, interpreted relative to the the directory
Expand All @@ -130,6 +136,7 @@ OPTIONS:
--from value Path to SCIP index file (default: "index.scip")
--comment-syntax value Comment syntax to use for snapshot files (default: "//")
--filter value, -f value [ --filter value, -f value ] Explicit list of test files to check. Can be specified multiple times. If not specified, all files are tested.
--check-documents Whether or not to validate whether every file in the test directory has a correlating document in the SCIP index. (default: false)
--help, -h show help
```

Expand All @@ -143,7 +150,9 @@ USAGE:
scip stats [command options] [arguments...]

OPTIONS:
--from value Path to SCIP index file (default: index.scip)
--from value Path to SCIP index file (default: "index.scip")
--project-root value Override project root in the SCIP file. This can be helpful when the SCIP index was created on another computer
--help, -h show help
```

## `scip expt-convert`
Expand Down
2 changes: 1 addition & 1 deletion reprolang/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name": "reprolang",
"version": "0.7.0"
"version": "0.7.1"
}
Loading