Skip to content

Commit

Permalink
chore: v0.5.1 (#322)
Browse files Browse the repository at this point in the history
* chore: v0.5.1

* docs: v0.5.1
  • Loading branch information
chesedo authored Aug 31, 2022
1 parent b333483 commit b43536a
Show file tree
Hide file tree
Showing 25 changed files with 41 additions and 41 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ edition = "2021"
[lib]

[dependencies]
shuttle-service = { version = "0.5.0", features = ["web-rocket"] }
shuttle-service = { version = "0.5.1", features = ["web-rocket"] }
rocket = "0.4.11"
```

Expand Down
8 changes: 4 additions & 4 deletions api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shuttle-api"
version = "0.5.0"
version = "0.5.1"
edition = "2021"
publish = false

Expand Down Expand Up @@ -31,14 +31,14 @@ tonic = "0.8.0"
uuid = { version = "1.1.2", features = ["v4"] }

[dependencies.shuttle-common]
version = "0.5.0"
version = "0.5.1"
path = "../common"

[dependencies.shuttle-proto]
version = "0.5.0"
version = "0.5.1"
path = "../proto"

[dependencies.shuttle-service]
version = "0.5.0"
version = "0.5.1"
path = "../service"
features = ["loader", "secrets"]
6 changes: 3 additions & 3 deletions cargo-shuttle/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-shuttle"
version = "0.5.0"
version = "0.5.1"
edition = "2021"
license = "Apache-2.0"
description = "A cargo command for the shuttle platform (https://www.shuttle.rs/)"
Expand Down Expand Up @@ -38,11 +38,11 @@ uuid = { version = "1.1.2", features = ["v4"] }
webbrowser = "0.7.1"

[dependencies.shuttle-common]
version = "0.5.0"
version = "0.5.1"
path = "../common"

[dependencies.shuttle-service]
version = "0.5.0"
version = "0.5.1"
path = "../service"
features = ["loader", "secrets"]

Expand Down
2 changes: 1 addition & 1 deletion cargo-shuttle/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ $ cargo shuttle init --rocket my-rocket-app

This should generate the following dependency in `Cargo.toml`:
```toml
shuttle-service = { version = "0.5.0", features = ["web-rocket"] }
shuttle-service = { version = "0.5.1", features = ["web-rocket"] }
```

The following boilerplate code should be generated into `src/lib.rs`:
Expand Down
2 changes: 1 addition & 1 deletion codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shuttle-codegen"
version = "0.5.0"
version = "0.5.1"
edition = "2021"
license = "Apache-2.0"
description = "Proc-macro code generator for the shuttle.rs service"
Expand Down
2 changes: 1 addition & 1 deletion common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shuttle-common"
version = "0.5.0"
version = "0.5.1"
edition = "2021"
license = "Apache-2.0"
description = "Common library for the shuttle platform (https://www.shuttle.rs/)"
Expand Down
2 changes: 1 addition & 1 deletion examples/axum/hello-world/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ edition = "2021"

[dependencies]
axum = "0.5"
shuttle-service = { version = "0.5.0", features = ["web-axum"] }
shuttle-service = { version = "0.5.1", features = ["web-axum"] }
sync_wrapper = "0.1"
2 changes: 1 addition & 1 deletion examples/axum/websocket/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.0", features = ["web-axum"] }
shuttle-service = { version = "0.5.1", features = ["web-axum"] }
sync_wrapper = "0.1"
tokio = { version = "1", features = ["full"] }
2 changes: 1 addition & 1 deletion examples/poem/hello-world/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ edition = "2021"

[dependencies]
poem = "1.3.35"
shuttle-service = { version = "0.5.0", features = ["web-poem"] }
shuttle-service = { version = "0.5.1", features = ["web-poem"] }
2 changes: 1 addition & 1 deletion examples/poem/mongodb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.0", features = ["web-poem", "mongodb-integration"] }
shuttle-service = { version = "0.5.1", features = ["web-poem", "mongodb-integration"] }
2 changes: 1 addition & 1 deletion examples/poem/postgres/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ edition = "2021"
[dependencies]
poem = "1.3.35"
serde = "1.0"
shuttle-service = { version = "0.5.0", features = ["sqlx-postgres", "secrets", "web-poem"] }
shuttle-service = { version = "0.5.1", features = ["sqlx-postgres", "secrets", "web-poem"] }
sqlx = { version = "0.6", features = ["runtime-tokio-native-tls", "postgres"] }
2 changes: 1 addition & 1 deletion examples/rocket/authentication/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.0", features = ["web-rocket"] }
shuttle-service = { version = "0.5.1", features = ["web-rocket"] }
2 changes: 1 addition & 1 deletion examples/rocket/hello-world/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ edition = "2021"

[dependencies]
rocket = "0.5.0-rc.2"
shuttle-service = { version = "0.5.0", features = ["web-rocket"] }
shuttle-service = { version = "0.5.1", features = ["web-rocket"] }
2 changes: 1 addition & 1 deletion examples/rocket/postgres/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ edition = "2021"
[dependencies]
rocket = { version = "0.5.0-rc.1", features = ["json"] }
serde = "1.0"
shuttle-service = { version = "0.5.0", features = ["sqlx-postgres", "secrets", "web-rocket"] }
shuttle-service = { version = "0.5.1", features = ["sqlx-postgres", "secrets", "web-rocket"] }
sqlx = { version = "0.6", features = ["runtime-tokio-native-tls", "postgres"] }
2 changes: 1 addition & 1 deletion examples/rocket/url-shortener/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.0", features = ["sqlx-postgres", "web-rocket"] }
shuttle-service = { version = "0.5.1", features = ["sqlx-postgres", "web-rocket"] }
sqlx = { version = "0.6", features = ["runtime-tokio-native-tls", "postgres"] }
url = "2.2"
2 changes: 1 addition & 1 deletion examples/serenity/hello-world/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.0", features = ["bot-serenity", "secrets", "sqlx-postgres"] }
shuttle-service = { version = "0.5.1", features = ["bot-serenity", "secrets", "sqlx-postgres"] }
sqlx = { version = "0.6", features = ["runtime-tokio-native-tls", "postgres"] }
2 changes: 1 addition & 1 deletion examples/serenity/postgres/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.0", features = ["bot-serenity", "secrets", "sqlx-postgres"] }
shuttle-service = { version = "0.5.1", features = ["bot-serenity", "secrets", "sqlx-postgres"] }
sqlx = { version = "0.6", features = ["runtime-tokio-native-tls", "postgres"] }
2 changes: 1 addition & 1 deletion examples/tide/hello-world/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ edition = "2021"
[lib]

[dependencies]
shuttle-service = { version = "0.5.0", features = ["web-tide"] }
shuttle-service = { version = "0.5.1", features = ["web-tide"] }
tide = "0.16.0"
2 changes: 1 addition & 1 deletion examples/tide/postgres/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ crate-type = ["cdylib"]

[dependencies]
serde = { version = "1.0", features = ["derive"] }
shuttle-service = { version = "0.5.0", features = ["sqlx-aws-postgres", "web-tide"] }
shuttle-service = { version = "0.5.1", features = ["sqlx-aws-postgres", "web-tide"] }
sqlx = { version = "0.6", features = ["runtime-tokio-native-tls", "postgres"] }
tide = "0.16.0"
2 changes: 1 addition & 1 deletion examples/tower/hello-world/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ edition = "2021"

[dependencies]
hyper = { version = "0.14", features = ["full"] }
shuttle-service = { version = "0.5.0", features = ["web-tower"] }
shuttle-service = { version = "0.5.1", features = ["web-tower"] }
tower = { version = "0.4", features = ["full"] }
4 changes: 2 additions & 2 deletions proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shuttle-proto"
version = "0.5.0"
version = "0.5.1"
edition = "2021"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -10,7 +10,7 @@ prost = "0.11.0"
tonic = "0.8.0"

[dependencies.shuttle-common]
version = "0.5.0"
version = "0.5.1"
path = "../common"

[build-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions provisioner/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shuttle-provisioner"
version = "0.5.0"
version = "0.5.1"
edition = "2021"
description = "Service responsible for provisioning and managing resources for services"
publish = false
Expand All @@ -23,7 +23,7 @@ tracing = "0.1.36"
tracing-subscriber = "0.3.15"

[dependencies.shuttle-proto]
version = "0.5.0"
version = "0.5.1"
path = "../proto"

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions service/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shuttle-service"
version = "0.5.0"
version = "0.5.1"
edition = "2021"
license = "Apache-2.0"
description = "Service traits and macros to deploy on the shuttle platform (https://www.shuttle.rs/)"
Expand Down Expand Up @@ -39,7 +39,7 @@ version = "1.12.0"
features = ["tokio1"]

[dependencies.shuttle-codegen]
version = "0.5.0"
version = "0.5.1"
path = "../codegen"
optional = true

Expand All @@ -48,7 +48,7 @@ portpicker = "0.1.1"
uuid = { version = "1.1.2", features = ["v4"] }

[dependencies.shuttle-common]
version = "0.5.0"
version = "0.5.1"
path = "../common"

[features]
Expand Down
4 changes: 2 additions & 2 deletions service/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.0", features = ["web-rocket"] }
//! shuttle-service = { version = "0.5.1", features = ["web-rocket"] }
//! ```
//!
//! A boilerplate code for your rocket project can also be found in `src/lib.rs`:
Expand Down Expand Up @@ -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.0", features = ["web-rocket", "sqlx-postgres"] }
//! shuttle-service = { version = "0.5.1", features = ["web-rocket", "sqlx-postgres"] }
//! sqlx = { version = "0.6.1", features = ["runtime-tokio-native-tls", "postgres"] }
//! ```
//!
Expand Down

0 comments on commit b43536a

Please sign in to comment.