From 5dd92cb8b3f1e1a63da5ce24ff550795084b8623 Mon Sep 17 00:00:00 2001 From: Lucas Fontes Date: Mon, 11 Nov 2024 17:42:35 -0500 Subject: [PATCH] chore: Prepare 0.0.5 release (#46) Signed-off-by: Lucas Fontes --- README.md | 4 ++-- _examples/http-client/go.mod | 2 +- _examples/http-server/go.mod | 2 +- _examples/invoke/go.mod | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 14043e5..5f5124f 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.4 +go get go.wasmcloud.dev/component@v0.0.5 ``` Import the SDK WIT. In `wit/deps.toml`: ```toml -wasmcloud-component = "https://github.com/wasmCloud/component-sdk-go/archive/v0.0.4.tar.gz" +wasmcloud-component = "https://github.com/wasmCloud/component-sdk-go/archive/v0.0.5.tar.gz" ``` diff --git a/_examples/http-client/go.mod b/_examples/http-client/go.mod index be5cd4f..8f619dd 100644 --- a/_examples/http-client/go.mod +++ b/_examples/http-client/go.mod @@ -4,7 +4,7 @@ go 1.23.0 require ( go.bytecodealliance.org v0.4.0 - go.wasmcloud.dev/component v0.0.4 + go.wasmcloud.dev/component v0.0.5 ) require ( diff --git a/_examples/http-server/go.mod b/_examples/http-server/go.mod index 99655bd..f4648f2 100644 --- a/_examples/http-server/go.mod +++ b/_examples/http-server/go.mod @@ -5,7 +5,7 @@ go 1.23.0 require ( github.com/stretchr/testify v1.9.0 go.bytecodealliance.org v0.4.0 - go.wasmcloud.dev/component v0.0.4 + go.wasmcloud.dev/component v0.0.5 go.wasmcloud.dev/wadge v0.7.0 ) diff --git a/_examples/invoke/go.mod b/_examples/invoke/go.mod index d66c519..7293d9d 100644 --- a/_examples/invoke/go.mod +++ b/_examples/invoke/go.mod @@ -5,7 +5,7 @@ go 1.23.0 require ( github.com/stretchr/testify v1.9.0 go.bytecodealliance.org v0.4.0 - go.wasmcloud.dev/component v0.0.4 + go.wasmcloud.dev/component v0.0.5 go.wasmcloud.dev/wadge v0.7.0 )