Skip to content

Commit a65f13a

Browse files
authored
Merge pull request #23 from adamreese/ref/wasip2-v3
Move wasip2 sdk to v3 directory
2 parents 8ffe6d3 + df221c7 commit a65f13a

File tree

374 files changed

+173
-167
lines changed

Some content is hidden

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

374 files changed

+173
-167
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ test-integration: http/testdata/http-tinygo/main.wasm
1313
go test -v -count=1 .
1414

1515
.PHONY: test-integration-wasip2
16-
test-integration-wasip2:
17-
cd v2 && go test -v -count=1 .
16+
test-integration-wasip2:
17+
cd v3 && go test -v -count=1 .
1818

1919
http/testdata/http-tinygo/main.wasm: generate
2020
http/testdata/http-tinygo/main.wasm: http/testdata/http-tinygo/main.go

v2/examples/http/go.mod

Lines changed: 0 additions & 12 deletions
This file was deleted.

v2/examples/kv/go.mod

Lines changed: 0 additions & 12 deletions
This file was deleted.

v2/examples/llm/go.mod

Lines changed: 0 additions & 12 deletions
This file was deleted.

v2/examples/variables/go.mod

Lines changed: 0 additions & 12 deletions
This file was deleted.

v2/http/testdata/http-tinygo/go.mod

Lines changed: 0 additions & 12 deletions
This file was deleted.

v2/kv/testdata/key-value/go.mod

Lines changed: 0 additions & 12 deletions
This file was deleted.

v2/variables/testdata/variables/go.mod

Lines changed: 0 additions & 12 deletions
This file was deleted.

v2/README.md renamed to v3/README.md

Lines changed: 3 additions & 3 deletions

v3/examples/http/go.mod

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
module github.com/spinframework/spin-go-sdk/v3/examples/http
2+
3+
go 1.23.2
4+
5+
require github.com/spinframework/spin-go-sdk/v3 v3.0.0
6+
7+
require (
8+
github.com/julienschmidt/httprouter v1.3.0 // indirect
9+
go.bytecodealliance.org/cm v0.2.2 // indirect
10+
)
11+
12+
replace github.com/spinframework/spin-go-sdk/v3 => ../../

0 commit comments

Comments
 (0)