Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Update for upcoming v0.5.0 release #278

Merged
merged 1 commit into from
Sep 26, 2024
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
22 changes: 19 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,32 @@
# ChangeLog

## Unreleased (-> v0.5.0)
## Unreleased

Nothing so far.

## v0.5.0

CLI:

- Added a `test` command for targeted testing of specific occurrences.
See the [CLI](docs/CLI.md) and [test file syntax reference](docs/test_file_format.md) for details.
(https://github.com/sourcegraph/scip/pull/236)
- Breaking changes:
- Removed SCIP to LSIF conversion functionality
- Removed the `convert` subcommand for SCIP to LSIF conversion.
(https://github.com/sourcegraph/scip/pull/275)

Schema:

- Added two new `SymbolKind` variants: `Extension` and `Mixin`.
(https://github.com/sourcegraph/scip/pull/277)

Go SCIP bindings

- Added clearer documentation around document canonicalization.
(https://github.com/sourcegraph/scip/pull/273)
- Breaking changes:
- Removed SCIP to LSIF conversion functionality
- Removed SCIP to LSIF conversion functionality.
(https://github.com/sourcegraph/scip/pull/275)

## v0.4.0

Expand Down
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.4.0"
version = "0.5.0"
edition = "2021"
license = "Apache-2.0"
description = """
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.4.0
0.5.0
4 changes: 2 additions & 2 deletions docs/CLI.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ USAGE:
scip [global options] command [command options] [arguments...]

VERSION:
v0.4.0
v0.5.0

DESCRIPTION:
For more details, see the project README at:
Expand Down Expand Up @@ -115,7 +115,7 @@ DESCRIPTION:
in a given SCIP index matches that specified in human-readable test files,
using syntax similar to the 'snapshot subcommand'. Test file syntax reference:

https://github.com/sourcegraph/scip/blob/v0.4.0/docs/test_file_format.md
https://github.com/sourcegraph/scip/blob/v0.5.0/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 Down
Loading