From cc5eaf329c1e0a8e56c361198c3ac8f9bfcf44ef Mon Sep 17 00:00:00 2001 From: jupblb Date: Tue, 14 Apr 2026 15:40:12 +0200 Subject: [PATCH] Bump version to 0.7.1 --- CHANGELOG.md | 9 +++++++++ bindings/haskell/scip.cabal | 2 +- bindings/rust/Cargo.lock | 2 +- bindings/rust/Cargo.toml | 2 +- bindings/typescript/package.json | 2 +- cmd/scip/version.txt | 2 +- docs/CLI.md | 23 ++++++++++++++++------- reprolang/package.json | 2 +- 8 files changed, 31 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b1c5488f..88755b6f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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: diff --git a/bindings/haskell/scip.cabal b/bindings/haskell/scip.cabal index 6e8aeba4..be4f85f8 100644 --- a/bindings/haskell/scip.cabal +++ b/bindings/haskell/scip.cabal @@ -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 diff --git a/bindings/rust/Cargo.lock b/bindings/rust/Cargo.lock index bdb0c612..012ba965 100644 --- a/bindings/rust/Cargo.lock +++ b/bindings/rust/Cargo.lock @@ -64,7 +64,7 @@ dependencies = [ [[package]] name = "scip" -version = "0.7.0" +version = "0.7.1" dependencies = [ "pretty_assertions", "protobuf", diff --git a/bindings/rust/Cargo.toml b/bindings/rust/Cargo.toml index b2c35e9e..80a578ae 100644 --- a/bindings/rust/Cargo.toml +++ b/bindings/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scip" -version = "0.7.0" +version = "0.7.1" edition = "2021" license = "Apache-2.0" description = """ diff --git a/bindings/typescript/package.json b/bindings/typescript/package.json index 97f18eee..ed16d936 100644 --- a/bindings/typescript/package.json +++ b/bindings/typescript/package.json @@ -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", diff --git a/cmd/scip/version.txt b/cmd/scip/version.txt index faef31a4..39e898a4 100644 --- a/cmd/scip/version.txt +++ b/cmd/scip/version.txt @@ -1 +1 @@ -0.7.0 +0.7.1 diff --git a/docs/CLI.md b/docs/CLI.md index 53efdc1c..9a5dc0a7 100644 --- a/docs/CLI.md +++ b/docs/CLI.md @@ -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: @@ -55,6 +55,9 @@ DESCRIPTION: You may want to filter the output using `grep -v ` to narrow down on certain classes of errors. + +OPTIONS: + --help, -h show help ``` ## `scip print` @@ -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` @@ -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 @@ -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 ``` @@ -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` diff --git a/reprolang/package.json b/reprolang/package.json index d95fca5e..467d8cc4 100644 --- a/reprolang/package.json +++ b/reprolang/package.json @@ -1,4 +1,4 @@ { "name": "reprolang", - "version": "0.7.0" + "version": "0.7.1" }