Skip to content

Commit a729dab

Browse files
committed
fix(go): use correct replace directive
Signed-off-by: Roman Volosatovs <[email protected]>
1 parent 91d1ff4 commit a729dab

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

go.work

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ use (
1010
./tests/go
1111
)
1212

13-
replace github.com/bytecodealliance/wrpc/go v0.0.0-unpublished => ./go
13+
replace github.com/bytecodealliance/wrpc/go v0.0.1 => ./go

tests/go/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/bytecodealliance/wrpc/tests/go
33
go 1.22.2
44

55
require (
6-
github.com/bytecodealliance/wrpc/go v0.0.0-unpublished
6+
github.com/bytecodealliance/wrpc/go v0.0.1
77
github.com/google/uuid v1.6.0
88
github.com/nats-io/nats-server/v2 v2.10.14
99
github.com/nats-io/nats.go v1.37.0
@@ -24,4 +24,4 @@ require (
2424
gopkg.in/yaml.v3 v3.0.1 // indirect
2525
)
2626

27-
replace github.com/bytecodealliance/wrpc/go v0.0.0-unpublished => ../../go
27+
replace github.com/bytecodealliance/wrpc/go v0.0.1 => ../../go

0 commit comments

Comments
 (0)