diff --git a/examples/hello-world/spin.toml b/examples/hello-world/spin.toml index 32546e7..395cc13 100644 --- a/examples/hello-world/spin.toml +++ b/examples/hello-world/spin.toml @@ -1,7 +1,7 @@ spin_manifest_version = 2 [application] -authors = ["Fermyon Engineering "] +authors = ["The Spin authors"] description = "A simple application that returns hello." name = "hello-world" version = "1.0.0" diff --git a/examples/http-outbound/spin.toml b/examples/http-outbound/spin.toml index b8f23f8..783c7ac 100644 --- a/examples/http-outbound/spin.toml +++ b/examples/http-outbound/spin.toml @@ -1,7 +1,7 @@ spin_manifest_version = 2 [application] -authors = ["Fermyon Engineering "] +authors = ["The Spin authors"] description = "Demonstrates outbound HTTP calls" name = "outbound-http" version = "1.0.0" diff --git a/examples/http-router-macro/spin.toml b/examples/http-router-macro/spin.toml index a1f6638..5b3f31f 100644 --- a/examples/http-router-macro/spin.toml +++ b/examples/http-router-macro/spin.toml @@ -1,7 +1,7 @@ spin_manifest_version = 2 [application] -authors = ["Fermyon Engineering "] +authors = ["The Spin authors"] description = "An application that demonstrates HTTP routing." name = "spin-rust-router" version = "1.0.0" diff --git a/examples/http-router/spin.toml b/examples/http-router/spin.toml index ce719f3..14201a8 100644 --- a/examples/http-router/spin.toml +++ b/examples/http-router/spin.toml @@ -1,7 +1,7 @@ spin_manifest_version = 2 [application] -authors = ["Fermyon Engineering "] +authors = ["The Spin authors"] description = "An application that demonstrates HTTP routing." name = "spin-rust-router" version = "1.0.0" diff --git a/examples/json-http/spin.toml b/examples/json-http/spin.toml index e3f3505..4dcefb5 100644 --- a/examples/json-http/spin.toml +++ b/examples/json-http/spin.toml @@ -1,7 +1,7 @@ spin_manifest_version = 2 [application] -authors = ["Fermyon Engineering "] +authors = ["The Spin authors"] description = "An application which parses a JSON POST body." name = "json-http-rust" version = "1.0.0" diff --git a/examples/key-value/spin.toml b/examples/key-value/spin.toml index 478d00a..01ef08d 100644 --- a/examples/key-value/spin.toml +++ b/examples/key-value/spin.toml @@ -1,7 +1,7 @@ spin_manifest_version = 2 [application] -authors = ["Fermyon Engineering "] +authors = ["The Spin authors"] description = "A simple application that exercises key-value storage." name = "spin-key-value" version = "1.0.0" diff --git a/examples/postgres-v3/spin.toml b/examples/postgres-v3/spin.toml index ff08841..577a3bb 100644 --- a/examples/postgres-v3/spin.toml +++ b/examples/postgres-v3/spin.toml @@ -1,7 +1,7 @@ spin_manifest_version = 2 [application] -authors = ["Fermyon Engineering "] +authors = ["The Spin authors"] name = "rust-outbound-pg-v3-example" version = "0.1.0" diff --git a/examples/postgres-v4/spin.toml b/examples/postgres-v4/spin.toml index 274a7b9..14fc580 100644 --- a/examples/postgres-v4/spin.toml +++ b/examples/postgres-v4/spin.toml @@ -1,7 +1,7 @@ spin_manifest_version = 2 [application] -authors = ["Fermyon Engineering "] +authors = ["The Spin authors"] name = "rust-outbound-pg-v4-example" version = "0.1.0" diff --git a/examples/postgres/spin.toml b/examples/postgres/spin.toml index f01402d..031fed1 100644 --- a/examples/postgres/spin.toml +++ b/examples/postgres/spin.toml @@ -1,7 +1,7 @@ spin_manifest_version = 2 [application] -authors = ["Fermyon Engineering "] +authors = ["The Spin authors"] name = "rust-outbound-pg-example" version = "0.1.0" diff --git a/examples/redis-async/spin.toml b/examples/redis-async/spin.toml index 5495215..ebf0e71 100644 --- a/examples/redis-async/spin.toml +++ b/examples/redis-async/spin.toml @@ -1,7 +1,7 @@ spin_manifest_version = 2 [application] -authors = ["Fermyon Engineering "] +authors = ["The Spin authors"] description = "An async redis application." name = "async-spin-redis" version = "0.1.0" diff --git a/examples/redis-outbound/spin.toml b/examples/redis-outbound/spin.toml index 6e9beb4..bf84b46 100644 --- a/examples/redis-outbound/spin.toml +++ b/examples/redis-outbound/spin.toml @@ -1,7 +1,7 @@ spin_manifest_version = 2 [application] -authors = ["Fermyon Engineering "] +authors = ["The Spin authors"] name = "rust-outbound-redis-example" version = "0.1.0" diff --git a/examples/redis/spin.toml b/examples/redis/spin.toml index 401b98b..934a99c 100644 --- a/examples/redis/spin.toml +++ b/examples/redis/spin.toml @@ -1,7 +1,7 @@ spin_manifest_version = 2 [application] -authors = ["Fermyon Engineering "] +authors = ["The Spin authors"] description = "A redis application." name = "spin-redis" version = "0.1.0" diff --git a/examples/variables/spin.toml b/examples/variables/spin.toml index 84e3962..bc66d34 100644 --- a/examples/variables/spin.toml +++ b/examples/variables/spin.toml @@ -1,7 +1,7 @@ spin_manifest_version = 2 [application] -authors = ["Fermyon Engineering "] +authors = ["The Spin authors"] description = "A Spin Rust application demonstrating the variables sdk." name = "spin-variables-rust" version = "0.1.0" diff --git a/examples/wasi-http-streaming-file/spin.toml b/examples/wasi-http-streaming-file/spin.toml index 65ec228..dc50142 100644 --- a/examples/wasi-http-streaming-file/spin.toml +++ b/examples/wasi-http-streaming-file/spin.toml @@ -1,7 +1,7 @@ spin_manifest_version = 2 [application] -authors = ["Fermyon Engineering "] +authors = ["The Spin authors"] description = "An application that streams a chunked file as an HTTP response" name = "spin-wasi-http-streaming-file" version = "1.0.0" diff --git a/examples/wasi-http-streaming-outgoing-body/spin.toml b/examples/wasi-http-streaming-outgoing-body/spin.toml index e5cd49e..8a8f5d2 100644 --- a/examples/wasi-http-streaming-outgoing-body/spin.toml +++ b/examples/wasi-http-streaming-outgoing-body/spin.toml @@ -1,7 +1,7 @@ spin_manifest_version = 2 [application] -authors = ["Fermyon Engineering "] +authors = ["The Spin authors"] description = "An application that makes concurrent outbound HTTP requests." name = "spin-wasi-http-async" version = "1.0.0" diff --git a/examples/wasip3-http-axum-router/spin.toml b/examples/wasip3-http-axum-router/spin.toml index aaa34c2..133ecc4 100644 --- a/examples/wasip3-http-axum-router/spin.toml +++ b/examples/wasip3-http-axum-router/spin.toml @@ -5,7 +5,7 @@ spin_manifest_version = 2 [application] name = "axum-router" version = "0.1.0" -authors = ["Fermyon Engineering "] +authors = ["The Spin authors"] description = "An example application using axum" [[trigger.http]] diff --git a/examples/wasip3-http-hello-world/spin.toml b/examples/wasip3-http-hello-world/spin.toml index 67daf8d..e5d9450 100644 --- a/examples/wasip3-http-hello-world/spin.toml +++ b/examples/wasip3-http-hello-world/spin.toml @@ -3,7 +3,7 @@ spin_manifest_version = 2 [application] -authors = ["Fermyon Engineering "] +authors = ["The Spin authors"] description = "An application that returns hello." name = "hello-world" version = "1.0.0" diff --git a/examples/wasip3-http-send-request/spin.toml b/examples/wasip3-http-send-request/spin.toml index e9b3810..036820f 100644 --- a/examples/wasip3-http-send-request/spin.toml +++ b/examples/wasip3-http-send-request/spin.toml @@ -3,7 +3,7 @@ spin_manifest_version = 2 [application] -authors = ["Fermyon Engineering "] +authors = ["The Spin authors"] description = "An application that sends an HTTP request" name = "send-request" version = "1.0.0"