Skip to content

Commit c63e54b

Browse files
lxfontesMossaka
authored andcommitted
Mass search replace 'github.com/bytecodealliance/wasm-tools-go' -> 'go.bytecodealliance.org'
Signed-off-by: Lucas Fontes <lucas@cosmonic.com>
1 parent 68044d0 commit c63e54b

File tree

77 files changed

+813
-102
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+813
-102
lines changed

cm/debug_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"strings"
66
"unsafe"
77

8-
"github.com/bytecodealliance/wasm-tools-go/internal/tinyunsafe"
8+
"go.bytecodealliance.org/internal/tinyunsafe"
99
)
1010

1111
func typeName(v any) string {

cm/hostlayout_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"testing"
66
"unsafe"
77

8-
"github.com/bytecodealliance/wasm-tools-go/internal/tinyunsafe"
8+
"go.bytecodealliance.org/internal/tinyunsafe"
99
)
1010

1111
func TestFieldAlignment(t *testing.T) {

cmd/wit-bindgen-go/cmd/generate/generate.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ import (
77
"path/filepath"
88
"strings"
99

10-
"github.com/bytecodealliance/wasm-tools-go/internal/codec"
11-
"github.com/bytecodealliance/wasm-tools-go/internal/go/gen"
12-
"github.com/bytecodealliance/wasm-tools-go/internal/witcli"
13-
"github.com/bytecodealliance/wasm-tools-go/wit/bindgen"
14-
"github.com/bytecodealliance/wasm-tools-go/wit/logging"
10+
"go.bytecodealliance.org/internal/codec"
11+
"go.bytecodealliance.org/internal/go/gen"
12+
"go.bytecodealliance.org/internal/witcli"
13+
"go.bytecodealliance.org/wit/bindgen"
14+
"go.bytecodealliance.org/wit/logging"
1515
"github.com/urfave/cli/v3"
1616
)
1717

@@ -51,7 +51,7 @@ var Command = &cli.Command{
5151
Value: "",
5252
OnlyOnce: true,
5353
Config: cli.StringConfig{TrimSpace: true},
54-
Usage: "Import path for the Component Model utility package, e.g. github.com/bytecodealliance/wasm-tools-go/cm",
54+
Usage: "Import path for the Component Model utility package, e.g. go.bytecodealliance.org/cm",
5555
},
5656
&cli.BoolFlag{
5757
Name: "versioned",

cmd/wit-bindgen-go/cmd/wit/wit.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"context"
55
"fmt"
66

7-
"github.com/bytecodealliance/wasm-tools-go/internal/witcli"
8-
"github.com/bytecodealliance/wasm-tools-go/wit"
7+
"go.bytecodealliance.org/internal/witcli"
8+
"go.bytecodealliance.org/wit"
99
"github.com/urfave/cli/v3"
1010
)
1111

cmd/wit-bindgen-go/main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import (
77

88
"github.com/urfave/cli/v3"
99

10-
"github.com/bytecodealliance/wasm-tools-go/cmd/wit-bindgen-go/cmd/generate"
11-
"github.com/bytecodealliance/wasm-tools-go/cmd/wit-bindgen-go/cmd/wit"
12-
"github.com/bytecodealliance/wasm-tools-go/internal/witcli"
10+
"go.bytecodealliance.org/cmd/wit-bindgen-go/cmd/generate"
11+
"go.bytecodealliance.org/cmd/wit-bindgen-go/cmd/wit"
12+
"go.bytecodealliance.org/internal/witcli"
1313
)
1414

1515
func main() {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/bytecodealliance/wasm-tools-go
1+
module go.bytecodealliance.org
22

33
go 1.22.0
44

internal/codec/json/decoder.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"io"
77

8-
"github.com/bytecodealliance/wasm-tools-go/internal/codec"
8+
"go.bytecodealliance.org/internal/codec"
99
)
1010

1111
type Decoder struct {

internal/go/gen/file.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"go/format"
77
"strings"
88

9-
"github.com/bytecodealliance/wasm-tools-go/internal/codec"
9+
"go.bytecodealliance.org/internal/codec"
1010
)
1111

1212
// File represents a generated file. It may be a Go file

internal/go/gen/module.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"path"
99
"path/filepath"
1010

11-
"github.com/bytecodealliance/wasm-tools-go/internal/relpath"
11+
"go.bytecodealliance.org/internal/relpath"
1212
"golang.org/x/mod/modfile"
1313
)
1414

internal/go/gen/module_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"os"
55
"testing"
66

7-
"github.com/bytecodealliance/wasm-tools-go/internal/relpath"
7+
"go.bytecodealliance.org/internal/relpath"
88
)
99

1010
func TestPackagePath(t *testing.T) {
@@ -17,7 +17,7 @@ func TestPackagePath(t *testing.T) {
1717
if err != nil {
1818
t.Error(err)
1919
}
20-
want := "github.com/bytecodealliance/wasm-tools-go/internal/go/gen"
20+
want := "go.bytecodealliance.org/internal/go/gen"
2121
if got != want {
2222
t.Errorf("PackagePath(%q): got %s, expected %s", wd, got, want)
2323
}

0 commit comments

Comments
 (0)