diff --git a/README.md b/README.md index b4852fe..bf34ef5 100644 --- a/README.md +++ b/README.md @@ -13,14 +13,14 @@ Requires tinygo 0.33 or above. Import `go.wasmcloud.dev/component` in your Go module. ```bash -go get go.wasmcloud.dev/component@v0.0.3 +go get go.wasmcloud.dev/component@v0.0.4 ``` Import the SDK WIT. In `wit/deps.toml`: ```toml -wasmcloud-component = "https://github.com/wasmCloud/component-sdk-go/archive/v0.0.3.tar.gz" +wasmcloud-component = "https://github.com/wasmCloud/component-sdk-go/archive/v0.0.4.tar.gz" ``` diff --git a/_examples/http-client/go.mod b/_examples/http-client/go.mod index 3c24a39..3a58104 100644 --- a/_examples/http-client/go.mod +++ b/_examples/http-client/go.mod @@ -4,7 +4,7 @@ go 1.23.0 require ( github.com/bytecodealliance/wasm-tools-go v0.3.1 - go.wasmcloud.dev/component v0.0.3 + go.wasmcloud.dev/component v0.0.4 ) require ( diff --git a/_examples/http-server/go.mod b/_examples/http-server/go.mod index 76a64e5..c82a469 100644 --- a/_examples/http-server/go.mod +++ b/_examples/http-server/go.mod @@ -5,7 +5,7 @@ go 1.23.0 require ( github.com/bytecodealliance/wasm-tools-go v0.3.1 github.com/stretchr/testify v1.9.0 - go.wasmcloud.dev/component v0.0.3 + go.wasmcloud.dev/component v0.0.4 go.wasmcloud.dev/wadge v0.7.0 ) diff --git a/_examples/invoke/go.mod b/_examples/invoke/go.mod index 92bf896..449c0bc 100644 --- a/_examples/invoke/go.mod +++ b/_examples/invoke/go.mod @@ -5,7 +5,7 @@ go 1.23.0 require ( github.com/bytecodealliance/wasm-tools-go v0.3.1 github.com/stretchr/testify v1.9.0 - go.wasmcloud.dev/component v0.0.3 + go.wasmcloud.dev/component v0.0.4 go.wasmcloud.dev/wadge v0.7.0 )