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
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
exit 0
fi
{
echo "See the [CHANGELOG](https://github.com/sourcegraph/scip/blob/main/CHANGELOG.md) to see what's new in scip $TAG."
echo "See the [CHANGELOG](https://github.com/scip-code/scip/blob/main/CHANGELOG.md) to see what's new in scip $TAG."
echo ''
echo 'Download the CLI for your current platform using:'
echo ''
Expand All @@ -59,7 +59,7 @@ jobs:
echo " TAG=\"$TAG\" \\"
echo ' OS="$(uname -s | tr '"'"'[:upper:]'"'"' '"'"'[:lower:]'"'"')" \'
echo ' ARCH="$(uname -m | sed -e '"'"'s/x86_64/amd64/'"'"')" \'
echo ' bash -c '"'"'curl -L "https://github.com/sourcegraph/scip/releases/download/$TAG/scip-$OS-$ARCH.tar.gz"'"'"' \'
echo ' bash -c '"'"'curl -L "https://github.com/scip-code/scip/releases/download/$TAG/scip-$OS-$ARCH.tar.gz"'"'"' \'
echo '| tar xzf - scip'
echo '```'
} | gh release create "$TAG" --title "scip $TAG" --notes-file -
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scip-examples.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permissions:

jobs:
index:
if: github.repository == 'sourcegraph/scip' # Skip running on forks
if: github.repository == 'scip-code/scip' # Skip running on forks
runs-on: ubuntu-latest
timeout-minutes: 30

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ check out our documentation on
Also, check out the [Debugging section][] in the Development docs.

If you're interested in consuming SCIP data,
you can either use one of the [provided language bindings](https://github.com/sourcegraph/scip/tree/main/bindings),
you can either use one of the [provided language bindings](https://github.com/scip-code/scip/tree/main/bindings),
or generate code for the [SCIP Protobuf schema](./scip.proto)
using the Protobuf toolchain for your language ecosystem.
Also, check out the [Debugging section][] in the Development docs.
Expand Down Expand Up @@ -52,11 +52,11 @@ and the SCIP CLI in this repo.

## Installing the `scip` CLI

You can find binaries for the `scip` CLI tool [here](https://github.com/sourcegraph/scip/releases).
You can find binaries for the `scip` CLI tool [here](https://github.com/scip-code/scip/releases).
You can also compile a binary locally using:

```sh
git clone https://github.com/sourcegraph/scip.git --depth=1
git clone https://github.com/scip-code/scip.git --depth=1
cd scip
go build ./cmd/scip
```
Expand Down
2 changes: 1 addition & 1 deletion bindings/go/scip/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/sourcegraph/scip/bindings/go/scip
module github.com/scip-code/scip/bindings/go/scip

go 1.25.0

Expand Down
2 changes: 1 addition & 1 deletion bindings/go/scip/memtest/low_mem_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"github.com/stretchr/testify/require"
"google.golang.org/protobuf/proto"

"github.com/sourcegraph/scip/bindings/go/scip"
"github.com/scip-code/scip/bindings/go/scip"
)

// Do not add any other tests in this sub-package, so that the
Expand Down
2 changes: 1 addition & 1 deletion bindings/go/scip/scip.pb.go

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

2 changes: 1 addition & 1 deletion bindings/go/scip/testutil/format.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"sort"
"strings"

"github.com/sourcegraph/scip/bindings/go/scip"
"github.com/scip-code/scip/bindings/go/scip"
)

// FormatSnapshots renders the provided SCIP index into a pretty-printed text format
Expand Down
2 changes: 1 addition & 1 deletion bindings/go/scip/testutil/snapshot_testing.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"github.com/hexops/gotextdiff/span"
"github.com/stretchr/testify/require"

"github.com/sourcegraph/scip/bindings/go/scip"
"github.com/scip-code/scip/bindings/go/scip"
)

var updateSnapshots = flag.Bool("update-snapshots", false, "update SCIP snapshots files")
Expand Down
2 changes: 1 addition & 1 deletion bindings/go/scip/testutil/test_runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (

"github.com/fatih/color"

"github.com/sourcegraph/scip/bindings/go/scip"
"github.com/scip-code/scip/bindings/go/scip"
)

// RunTests validates whether the SCIP data present in an index matches that
Expand Down
4 changes: 2 additions & 2 deletions bindings/haskell/README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[![CI](https://github.com/sourcegraph/scip/actions/workflows/haskell.yml/badge.svg)](https://github.com/sourcegraph/scip/actions/workflows/haskell.yml/badge.svg)
[![CI](https://github.com/scip-code/scip/actions/workflows/haskell.yml/badge.svg)](https://github.com/scip-code/scip/actions/workflows/haskell.yml/badge.svg)

# Haskell bindings for SCIP

These bindings use [Google's proto-lens generator for Haskell](https://github.com/google/proto-lens).

Building: see the following workflow file for most up to date:
https://github.com/sourcegraph/scip/blob/main/.github/workflows/haskell.yml
https://github.com/scip-code/scip/blob/main/.github/workflows/haskell.yml

First, get a working GHC environment:

Expand Down
2 changes: 1 addition & 1 deletion bindings/haskell/scip.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license: Apache-2.0
license-file: LICENSE
author: SCIP Maintainers
maintainer: code-intel@sourcegraph.com
homepage: https://github.com/sourcegraph/scip
homepage: https://github.com/scip-code/scip
category: Language
build-type: Simple

Expand Down
6 changes: 3 additions & 3 deletions bindings/haskell/src/Proto/Scip.hs

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
Expand Up @@ -6,7 +6,7 @@ license = "Apache-2.0"
description = """
SCIP (pronunciation: "skip") is a language-agnostic protocol for indexing source code, which can be used to power code navigation functionality such as Go to definition, Find references, and Find implementations.
"""
repository = "https://github.com/sourcegraph/scip"
repository = "https://github.com/scip-code/scip"
readme = "../../README.md"

# We need >= 1.81.0 because: we only test against that
Expand Down
26 changes: 13 additions & 13 deletions bindings/rust/src/generated/scip.rs

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

4 changes: 2 additions & 2 deletions bindings/typescript/package-lock.json

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

4 changes: 2 additions & 2 deletions bindings/typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "@sourcegraph/scip",
"name": "@scip-code/scip",
"version": "0.6.1",
"description": "Generated TypeScript definitions for the Semantic Code Intelligence Protocol.",
"repository": "https://github.com/sourcegraph/scip/bindings/typescript",
"repository": "https://github.com/scip-code/scip/bindings/typescript",
"author": "Sourcegraph",
"license": "Apache-2.0",
"sideEffects": false,
Expand Down
Loading
Loading