Skip to content

Commit

Permalink
Merge pull request #1509 from fermyon/update-sdk-v1.2.0
Browse files Browse the repository at this point in the history
feat(templates): update sdk to v1.2.0
  • Loading branch information
fibonacci1729 authored May 17, 2023
2 parents c4fbd08 + 97bd550 commit e04f8cd
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion templates/http-go/content/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ module github.com/{{project-name | snake_case}}

go 1.17

require github.com/fermyon/spin/sdk/go v1.1.0
require github.com/fermyon/spin/sdk/go v1.2.0

require github.com/julienschmidt/httprouter v1.3.0 // indirect
4 changes: 2 additions & 2 deletions templates/http-go/content/go.sum
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
github.com/fermyon/spin/sdk/go v1.1.0 h1:Ji30FRXJX0ByMZcqmWiOGiPFsValF4cHVGKs1BUkEaI=
github.com/fermyon/spin/sdk/go v1.1.0/go.mod h1:yb8lGesopgj/GwPzLPATxcOeqWZT/HjrzEFfwbztAXE=
github.com/fermyon/spin/sdk/go v1.2.0 h1:eVTzxFHLgp1fB/N+PZ7hI369RTSWg8wNdtuLueF4Eqk=
github.com/fermyon/spin/sdk/go v1.2.0/go.mod h1:yb8lGesopgj/GwPzLPATxcOeqWZT/HjrzEFfwbztAXE=
github.com/julienschmidt/httprouter v1.3.0 h1:U0609e9tgbseu3rBINet9P48AI/D3oJs4dN7jwJOQ1U=
github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM=
2 changes: 1 addition & 1 deletion templates/http-rust/content/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ 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.1.0" }
spin-sdk = { git = "https://github.com/fermyon/spin", tag = "v1.2.0" }
# Crate that generates Rust Wasm bindings from a WebAssembly interface.
wit-bindgen-rust = { git = "https://github.com/bytecodealliance/wit-bindgen", rev = "cb871cfa1ee460b51eb1d144b175b9aab9c50aba" }

Expand Down
2 changes: 1 addition & 1 deletion templates/redis-go/content/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ module github.com/{{project-name | snake_case}}

go 1.17

require github.com/fermyon/spin/sdk/go v1.1.0
require github.com/fermyon/spin/sdk/go v1.2.0
4 changes: 2 additions & 2 deletions templates/redis-go/content/go.sum
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
github.com/fermyon/spin/sdk/go v1.1.0 h1:Ji30FRXJX0ByMZcqmWiOGiPFsValF4cHVGKs1BUkEaI=
github.com/fermyon/spin/sdk/go v1.1.0/go.mod h1:yb8lGesopgj/GwPzLPATxcOeqWZT/HjrzEFfwbztAXE=
github.com/fermyon/spin/sdk/go v1.2.0 h1:eVTzxFHLgp1fB/N+PZ7hI369RTSWg8wNdtuLueF4Eqk=
github.com/fermyon/spin/sdk/go v1.2.0/go.mod h1:yb8lGesopgj/GwPzLPATxcOeqWZT/HjrzEFfwbztAXE=
github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM=
2 changes: 1 addition & 1 deletion templates/redis-rust/content/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ anyhow = "1"
# Crate to simplify working with bytes.
bytes = "1"
# The Spin SDK.
spin-sdk = { git = "https://github.com/fermyon/spin", tag = "v1.1.0" }
spin-sdk = { git = "https://github.com/fermyon/spin", tag = "v1.2.0" }
# Crate that generates Rust Wasm bindings from a WebAssembly interface.
wit-bindgen-rust = { git = "https://github.com/bytecodealliance/wit-bindgen", rev = "cb871cfa1ee460b51eb1d144b175b9aab9c50aba" }

Expand Down

0 comments on commit e04f8cd

Please sign in to comment.