diff --git a/README.md b/README.md index f858eb3a0..7825452a1 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ edition = "2021" [lib] [dependencies] -shuttle-service = { version = "0.5.1", features = ["web-rocket"] } +shuttle-service = { version = "0.5.2", features = ["web-rocket"] } rocket = "0.4.11" ``` diff --git a/api/Cargo.toml b/api/Cargo.toml index 982e69265..13b2cf0dc 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shuttle-api" -version = "0.5.1" +version = "0.5.2" edition = "2021" publish = false @@ -31,14 +31,14 @@ tonic = "0.8.0" uuid = { version = "1.1.2", features = ["v4"] } [dependencies.shuttle-common] -version = "0.5.1" +version = "0.5.2" path = "../common" [dependencies.shuttle-proto] -version = "0.5.1" +version = "0.5.2" path = "../proto" [dependencies.shuttle-service] -version = "0.5.1" +version = "0.5.2" path = "../service" features = ["loader", "secrets"] diff --git a/cargo-shuttle/Cargo.toml b/cargo-shuttle/Cargo.toml index 0d956539b..3e5aec3f9 100644 --- a/cargo-shuttle/Cargo.toml +++ b/cargo-shuttle/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-shuttle" -version = "0.5.1" +version = "0.5.2" edition = "2021" license = "Apache-2.0" description = "A cargo command for the shuttle platform (https://www.shuttle.rs/)" @@ -38,11 +38,11 @@ uuid = { version = "1.1.2", features = ["v4"] } webbrowser = "0.7.1" [dependencies.shuttle-common] -version = "0.5.1" +version = "0.5.2" path = "../common" [dependencies.shuttle-service] -version = "0.5.1" +version = "0.5.2" path = "../service" features = ["loader", "secrets"] diff --git a/codegen/Cargo.toml b/codegen/Cargo.toml index dba576c8d..f259ff466 100644 --- a/codegen/Cargo.toml +++ b/codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shuttle-codegen" -version = "0.5.1" +version = "0.5.2" edition = "2021" license = "Apache-2.0" description = "Proc-macro code generator for the shuttle.rs service" diff --git a/common/Cargo.toml b/common/Cargo.toml index 7d62d8832..1703423f2 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shuttle-common" -version = "0.5.1" +version = "0.5.2" edition = "2021" license = "Apache-2.0" description = "Common library for the shuttle platform (https://www.shuttle.rs/)" diff --git a/examples/axum/hello-world/Cargo.toml b/examples/axum/hello-world/Cargo.toml index 0a3a236c0..4943755ed 100644 --- a/examples/axum/hello-world/Cargo.toml +++ b/examples/axum/hello-world/Cargo.toml @@ -7,5 +7,5 @@ edition = "2021" [dependencies] axum = "0.5" -shuttle-service = { version = "0.5.1", features = ["web-axum"] } +shuttle-service = { version = "0.5.2", features = ["web-axum"] } sync_wrapper = "0.1" diff --git a/examples/axum/websocket/Cargo.toml b/examples/axum/websocket/Cargo.toml index a8b9e85ba..7d1258e65 100644 --- a/examples/axum/websocket/Cargo.toml +++ b/examples/axum/websocket/Cargo.toml @@ -13,6 +13,6 @@ hyper = { version = "0.14", features = ["client", "http2"] } hyper-tls = "0.5" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -shuttle-service = { version = "0.5.1", features = ["web-axum"] } +shuttle-service = { version = "0.5.2", features = ["web-axum"] } sync_wrapper = "0.1" tokio = { version = "1", features = ["full"] } diff --git a/examples/poem/hello-world/Cargo.toml b/examples/poem/hello-world/Cargo.toml index 0fa387340..22bbb68d1 100644 --- a/examples/poem/hello-world/Cargo.toml +++ b/examples/poem/hello-world/Cargo.toml @@ -7,4 +7,4 @@ edition = "2021" [dependencies] poem = "1.3.35" -shuttle-service = { version = "0.5.1", features = ["web-poem"] } +shuttle-service = { version = "0.5.2", features = ["web-poem"] } diff --git a/examples/poem/mongodb/Cargo.toml b/examples/poem/mongodb/Cargo.toml index 586cc9ddd..3e96e486c 100644 --- a/examples/poem/mongodb/Cargo.toml +++ b/examples/poem/mongodb/Cargo.toml @@ -8,4 +8,4 @@ mongodb = "2.3.0" poem = "1.3.35" serde = { version = "1", features = ["derive"] } serde_json = "1" -shuttle-service = { version = "0.5.1", features = ["web-poem", "mongodb-integration"] } +shuttle-service = { version = "0.5.2", features = ["web-poem", "mongodb-integration"] } diff --git a/examples/poem/postgres/Cargo.toml b/examples/poem/postgres/Cargo.toml index ad33f6cff..6140a869a 100644 --- a/examples/poem/postgres/Cargo.toml +++ b/examples/poem/postgres/Cargo.toml @@ -8,5 +8,5 @@ edition = "2021" [dependencies] poem = "1.3.35" serde = "1.0" -shuttle-service = { version = "0.5.1", features = ["sqlx-postgres", "secrets", "web-poem"] } +shuttle-service = { version = "0.5.2", features = ["sqlx-postgres", "secrets", "web-poem"] } sqlx = { version = "0.6", features = ["runtime-tokio-native-tls", "postgres"] } diff --git a/examples/rocket/authentication/Cargo.toml b/examples/rocket/authentication/Cargo.toml index 99122811e..10b7e79a4 100644 --- a/examples/rocket/authentication/Cargo.toml +++ b/examples/rocket/authentication/Cargo.toml @@ -11,4 +11,4 @@ jsonwebtoken = { version = "8", default-features = false } lazy_static = "1.4" rocket = { version = "0.5.0-rc.2", features = ["json"] } serde = { version = "1.0", features = ["derive"] } -shuttle-service = { version = "0.5.1", features = ["web-rocket"] } +shuttle-service = { version = "0.5.2", features = ["web-rocket"] } diff --git a/examples/rocket/hello-world/Cargo.toml b/examples/rocket/hello-world/Cargo.toml index 6672b1395..761b410b7 100644 --- a/examples/rocket/hello-world/Cargo.toml +++ b/examples/rocket/hello-world/Cargo.toml @@ -7,4 +7,4 @@ edition = "2021" [dependencies] rocket = "0.5.0-rc.2" -shuttle-service = { version = "0.5.1", features = ["web-rocket"] } +shuttle-service = { version = "0.5.2", features = ["web-rocket"] } diff --git a/examples/rocket/postgres/Cargo.toml b/examples/rocket/postgres/Cargo.toml index 5b86f3663..0fc39cb88 100644 --- a/examples/rocket/postgres/Cargo.toml +++ b/examples/rocket/postgres/Cargo.toml @@ -8,5 +8,5 @@ edition = "2021" [dependencies] rocket = { version = "0.5.0-rc.1", features = ["json"] } serde = "1.0" -shuttle-service = { version = "0.5.1", features = ["sqlx-postgres", "secrets", "web-rocket"] } +shuttle-service = { version = "0.5.2", features = ["sqlx-postgres", "secrets", "web-rocket"] } sqlx = { version = "0.6", features = ["runtime-tokio-native-tls", "postgres"] } diff --git a/examples/rocket/url-shortener/Cargo.toml b/examples/rocket/url-shortener/Cargo.toml index d336b0df4..940c0fa96 100644 --- a/examples/rocket/url-shortener/Cargo.toml +++ b/examples/rocket/url-shortener/Cargo.toml @@ -9,6 +9,6 @@ edition = "2021" nanoid = "0.4" rocket = { version = "0.5.0-rc.2", features = ["json"] } serde = "1.0" -shuttle-service = { version = "0.5.1", features = ["sqlx-postgres", "web-rocket"] } +shuttle-service = { version = "0.5.2", features = ["sqlx-postgres", "web-rocket"] } sqlx = { version = "0.6", features = ["runtime-tokio-native-tls", "postgres"] } url = "2.2" diff --git a/examples/serenity/hello-world/Cargo.toml b/examples/serenity/hello-world/Cargo.toml index f713f470f..c0860388b 100644 --- a/examples/serenity/hello-world/Cargo.toml +++ b/examples/serenity/hello-world/Cargo.toml @@ -8,5 +8,5 @@ edition = "2021" [dependencies] log = "0.4.17" serenity = { version = "0.11.5", default-features = false, features = ["client", "gateway", "rustls_backend", "model"] } -shuttle-service = { version = "0.5.1", features = ["bot-serenity", "secrets", "sqlx-postgres"] } +shuttle-service = { version = "0.5.2", features = ["bot-serenity", "secrets", "sqlx-postgres"] } sqlx = { version = "0.6", features = ["runtime-tokio-native-tls", "postgres"] } diff --git a/examples/serenity/postgres/Cargo.toml b/examples/serenity/postgres/Cargo.toml index e040c794e..900ee3ac8 100644 --- a/examples/serenity/postgres/Cargo.toml +++ b/examples/serenity/postgres/Cargo.toml @@ -9,5 +9,5 @@ edition = "2021" log = "0.4.17" serde = "1.0" serenity = { version = "0.11.5", default-features = false, features = ["client", "gateway", "rustls_backend", "model"] } -shuttle-service = { version = "0.5.1", features = ["bot-serenity", "secrets", "sqlx-postgres"] } +shuttle-service = { version = "0.5.2", features = ["bot-serenity", "secrets", "sqlx-postgres"] } sqlx = { version = "0.6", features = ["runtime-tokio-native-tls", "postgres"] } diff --git a/examples/tide/hello-world/Cargo.toml b/examples/tide/hello-world/Cargo.toml index 402b39e40..fd058cc61 100644 --- a/examples/tide/hello-world/Cargo.toml +++ b/examples/tide/hello-world/Cargo.toml @@ -6,5 +6,5 @@ edition = "2021" [lib] [dependencies] -shuttle-service = { version = "0.5.1", features = ["web-tide"] } +shuttle-service = { version = "0.5.2", features = ["web-tide"] } tide = "0.16.0" diff --git a/examples/tide/postgres/Cargo.toml b/examples/tide/postgres/Cargo.toml index 11cf57eea..72e4b0936 100644 --- a/examples/tide/postgres/Cargo.toml +++ b/examples/tide/postgres/Cargo.toml @@ -9,6 +9,6 @@ crate-type = ["cdylib"] [dependencies] serde = { version = "1.0", features = ["derive"] } -shuttle-service = { version = "0.5.1", features = ["sqlx-aws-postgres", "web-tide"] } +shuttle-service = { version = "0.5.2", features = ["sqlx-aws-postgres", "web-tide"] } sqlx = { version = "0.6", features = ["runtime-tokio-native-tls", "postgres"] } tide = "0.16.0" diff --git a/examples/tower/hello-world/Cargo.toml b/examples/tower/hello-world/Cargo.toml index 3dda13458..67e761b6f 100644 --- a/examples/tower/hello-world/Cargo.toml +++ b/examples/tower/hello-world/Cargo.toml @@ -7,5 +7,5 @@ edition = "2021" [dependencies] hyper = { version = "0.14", features = ["full"] } -shuttle-service = { version = "0.5.1", features = ["web-tower"] } +shuttle-service = { version = "0.5.2", features = ["web-tower"] } tower = { version = "0.4", features = ["full"] } diff --git a/proto/Cargo.toml b/proto/Cargo.toml index 65625fc39..184b4cd0e 100644 --- a/proto/Cargo.toml +++ b/proto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shuttle-proto" -version = "0.5.1" +version = "0.5.2" edition = "2021" publish = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -10,7 +10,7 @@ prost = "0.11.0" tonic = "0.8.0" [dependencies.shuttle-common] -version = "0.5.1" +version = "0.5.2" path = "../common" [build-dependencies] diff --git a/provisioner/Cargo.toml b/provisioner/Cargo.toml index eab1233a1..4a9951032 100644 --- a/provisioner/Cargo.toml +++ b/provisioner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shuttle-provisioner" -version = "0.5.1" +version = "0.5.2" edition = "2021" description = "Service responsible for provisioning and managing resources for services" publish = false @@ -23,7 +23,7 @@ tracing = "0.1.36" tracing-subscriber = "0.3.15" [dependencies.shuttle-proto] -version = "0.5.1" +version = "0.5.2" path = "../proto" [dev-dependencies] diff --git a/service/Cargo.toml b/service/Cargo.toml index d2a1e21ef..921ab7b89 100644 --- a/service/Cargo.toml +++ b/service/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shuttle-service" -version = "0.5.1" +version = "0.5.2" edition = "2021" license = "Apache-2.0" description = "Service traits and macros to deploy on the shuttle platform (https://www.shuttle.rs/)" @@ -39,7 +39,7 @@ version = "1.12.0" features = ["tokio1"] [dependencies.shuttle-codegen] -version = "0.5.1" +version = "0.5.2" path = "../codegen" optional = true @@ -48,7 +48,7 @@ portpicker = "0.1.1" uuid = { version = "1.1.2", features = ["v4"] } [dependencies.shuttle-common] -version = "0.5.1" +version = "0.5.2" path = "../common" [features] diff --git a/service/src/lib.rs b/service/src/lib.rs index fd34daeab..f8c0f021e 100644 --- a/service/src/lib.rs +++ b/service/src/lib.rs @@ -28,7 +28,7 @@ //! be a library crate with a `shuttle-service` dependency with the `web-rocket` feature on the `shuttle-service` dependency. //! //! ```toml -//! shuttle-service = { version = "0.5.1", features = ["web-rocket"] } +//! shuttle-service = { version = "0.5.2", features = ["web-rocket"] } //! ``` //! //! A boilerplate code for your rocket project can also be found in `src/lib.rs`: @@ -101,7 +101,7 @@ //! Add the `sqlx-postgres` feature to the `shuttle-service` dependency, and add `sqlx` as a dependency with the `runtime-tokio-native-tls` and `postgres` features inside `Cargo.toml`: //! //! ```toml -//! shuttle-service = { version = "0.5.1", features = ["web-rocket", "sqlx-postgres"] } +//! shuttle-service = { version = "0.5.2", features = ["web-rocket", "sqlx-postgres"] } //! sqlx = { version = "0.6.1", features = ["runtime-tokio-native-tls", "postgres"] } //! ``` //!