From c55ae2ac5646575228ef0778fa3816fa0089f1a8 Mon Sep 17 00:00:00 2001 From: fermybot <103076628+fermybot@users.noreply.github.com> Date: Tue, 26 Sep 2023 23:53:04 +0000 Subject: [PATCH] feat(templates): update sdk to v1.5.1 Signed-off-by: fermybot <103076628+fermybot@users.noreply.github.com> --- templates/http-go/content/go.mod | 2 +- templates/http-go/content/go.sum | 4 ++-- templates/http-rust/content/Cargo.toml | 2 +- templates/redis-go/content/go.mod | 2 +- templates/redis-go/content/go.sum | 4 ++-- templates/redis-rust/content/Cargo.toml | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/templates/http-go/content/go.mod b/templates/http-go/content/go.mod index b7320e658b..a1e7949338 100644 --- a/templates/http-go/content/go.mod +++ b/templates/http-go/content/go.mod @@ -2,6 +2,6 @@ module github.com/{{project-name | snake_case}} go 1.17 -require github.com/fermyon/spin/sdk/go v1.5.0 +require github.com/fermyon/spin/sdk/go v1.5.1 require github.com/julienschmidt/httprouter v1.3.0 // indirect diff --git a/templates/http-go/content/go.sum b/templates/http-go/content/go.sum index 6a819b30aa..e18b5d2f9a 100644 --- a/templates/http-go/content/go.sum +++ b/templates/http-go/content/go.sum @@ -1,4 +1,4 @@ -github.com/fermyon/spin/sdk/go v1.5.0 h1:2tVa0oxTcHKixa5MO0UsjRrKOYCf05T/vjupsb/9Y4E= -github.com/fermyon/spin/sdk/go v1.5.0/go.mod h1:BqOVRDNjh2LtRUX76TF6d0R+GsG7NAncgzcj0Xnjs5I= +github.com/fermyon/spin/sdk/go v1.5.1 h1:ROEw/Pooua8WjNzZJesuC4yTc3mGM7xeCIG+QSaQcvg= +github.com/fermyon/spin/sdk/go v1.5.1/go.mod h1:BqOVRDNjh2LtRUX76TF6d0R+GsG7NAncgzcj0Xnjs5I= github.com/julienschmidt/httprouter v1.3.0 h1:U0609e9tgbseu3rBINet9P48AI/D3oJs4dN7jwJOQ1U= github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM= diff --git a/templates/http-rust/content/Cargo.toml b/templates/http-rust/content/Cargo.toml index 01ab6efaef..deb3d847d3 100644 --- a/templates/http-rust/content/Cargo.toml +++ b/templates/http-rust/content/Cargo.toml @@ -16,6 +16,6 @@ bytes = "1" # General-purpose crate with common HTTP types. http = "0.2" # The Spin SDK. -spin-sdk = { git = "https://github.com/fermyon/spin", tag = "v1.5.0" } +spin-sdk = { git = "https://github.com/fermyon/spin", tag = "v1.5.1" } [workspace] diff --git a/templates/redis-go/content/go.mod b/templates/redis-go/content/go.mod index c0ff535610..865f1574ad 100644 --- a/templates/redis-go/content/go.mod +++ b/templates/redis-go/content/go.mod @@ -2,4 +2,4 @@ module github.com/{{project-name | snake_case}} go 1.17 -require github.com/fermyon/spin/sdk/go v1.5.0 +require github.com/fermyon/spin/sdk/go v1.5.1 diff --git a/templates/redis-go/content/go.sum b/templates/redis-go/content/go.sum index c0956c4f0d..24071d8930 100644 --- a/templates/redis-go/content/go.sum +++ b/templates/redis-go/content/go.sum @@ -1,3 +1,3 @@ -github.com/fermyon/spin/sdk/go v1.5.0 h1:2tVa0oxTcHKixa5MO0UsjRrKOYCf05T/vjupsb/9Y4E= -github.com/fermyon/spin/sdk/go v1.5.0/go.mod h1:BqOVRDNjh2LtRUX76TF6d0R+GsG7NAncgzcj0Xnjs5I= +github.com/fermyon/spin/sdk/go v1.5.1 h1:ROEw/Pooua8WjNzZJesuC4yTc3mGM7xeCIG+QSaQcvg= +github.com/fermyon/spin/sdk/go v1.5.1/go.mod h1:BqOVRDNjh2LtRUX76TF6d0R+GsG7NAncgzcj0Xnjs5I= github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM= diff --git a/templates/redis-rust/content/Cargo.toml b/templates/redis-rust/content/Cargo.toml index aad438b1bd..d689c8d6c8 100644 --- a/templates/redis-rust/content/Cargo.toml +++ b/templates/redis-rust/content/Cargo.toml @@ -14,6 +14,6 @@ anyhow = "1" # Crate to simplify working with bytes. bytes = "1" # The Spin SDK. -spin-sdk = { git = "https://github.com/fermyon/spin", tag = "v1.5.0" } +spin-sdk = { git = "https://github.com/fermyon/spin", tag = "v1.5.1" } [workspace]