Skip to content

Commit 8101484

Browse files
committed
Bump version to 0.7.0 and add changelog
1 parent d2ceaff commit 8101484

File tree

9 files changed

+48
-9
lines changed

9 files changed

+48
-9
lines changed

CHANGELOG.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,44 @@
11
# ChangeLog
22

3+
## v0.7.0
4+
5+
General:
6+
7+
- BREAKING CHANGE: The project has moved from `sourcegraph/scip` to `scip-code/scip`.
8+
All import paths and references have been updated accordingly.
9+
(https://github.com/scip-code/scip/pull/377)
10+
- All bindings (Go, Rust, TypeScript, Haskell) now follow the same
11+
version number as the repository.
12+
- Adopted Nix for building and CI.
13+
(https://github.com/scip-code/scip/pull/356)
14+
- Removed all LSIF references now that LSIF is fully deprecated.
15+
(https://github.com/scip-code/scip/pull/369)
16+
17+
Go bindings:
18+
19+
- BREAKING CHANGE: Go bindings have been split into a separate module
20+
at `github.com/scip-code/scip/bindings/go/scip` to reduce
21+
the dependency footprint for consumers.
22+
(https://github.com/scip-code/scip/pull/364,
23+
https://github.com/scip-code/scip/pull/371)
24+
- Removed old V1 symbol parser, speedtest, and sample indexes.
25+
(https://github.com/scip-code/scip/pull/365)
26+
- Updated protoc-gen-go from v1.31.0 to v1.36.6.
27+
(https://github.com/scip-code/scip/pull/358)
28+
29+
Rust bindings:
30+
31+
- Fixed symbol formatting to use character count instead of byte length,
32+
fixing issues with multibyte identifiers.
33+
(https://github.com/scip-code/scip/pull/346)
34+
- Fixed symbol backtick escaping to match the Go implementation.
35+
(https://github.com/scip-code/scip/pull/368)
36+
37+
TypeScript bindings:
38+
39+
- BREAKING CHANGE: Migrated protobuf bindings from protoc-gen-ts to protobuf-es.
40+
(https://github.com/scip-code/scip/pull/361)
41+
342
## v0.6.1
443

544
Go bindings:

bindings/haskell/scip.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cabal-version: 3.6
22

33
name: scip
4-
version: 0.6.1
4+
version: 0.7.0
55
synopsis: Haskell bindings for SCIP Code Intelligence Protocol
66
license: Apache-2.0
77
license-file: LICENSE

bindings/rust/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bindings/rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "scip"
3-
version = "0.6.1"
3+
version = "0.7.0"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = """

bindings/typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@scip-code/scip",
3-
"version": "0.6.1",
3+
"version": "0.7.0",
44
"description": "Generated TypeScript definitions for the Semantic Code Intelligence Protocol.",
55
"repository": "https://github.com/scip-code/scip/bindings/typescript",
66
"author": "Sourcegraph",

cmd/scip/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.6.1
1+
0.7.0

docs/CLI.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ USAGE:
1818
scip [global options] command [command options] [arguments...]
1919
2020
VERSION:
21-
v0.6.1
21+
v0.7.0
2222
2323
DESCRIPTION:
2424
For more details, see the project README at:
@@ -117,7 +117,7 @@ DESCRIPTION:
117117
in a given SCIP index matches that specified in human-readable test files,
118118
using syntax similar to the 'snapshot subcommand'. Test file syntax reference:
119119
120-
https://github.com/scip-code/scip/blob/v0.6.1/docs/test_file_format.md
120+
https://github.com/scip-code/scip/blob/v0.7.0/docs/test_file_format.md
121121
122122
The test files are located based on the relative_path field
123123
in the SCIP document, interpreted relative to the the directory

docs/Development.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ version in `cmd/scip/version.txt`, `bindings/rust/Cargo.toml`,
8686

8787
After landing a commit with those two changes, trigger the
8888
[release workflow](/.github/workflows/release.yml) from the
89-
Actions tab on GitHub, providing the version number (e.g. `0.6.1`).
89+
Actions tab on GitHub, providing the version number (e.g. `0.7.0`).
9090
The workflow will validate the CHANGELOG and version.txt, create and push
9191
tags, create the GitHub release, publish the Rust crate, and build and
9292
upload CLI binaries.

reprolang/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"name": "reprolang",
3-
"version": "0.6.1"
3+
"version": "0.7.0"
44
}

0 commit comments

Comments
 (0)