Skip to content

Commit 3016b1e

Browse files
committed
chore: v0.27.0
1 parent 36c6dcb commit 3016b1e

17 files changed

+38
-38
lines changed

configuration/shuttle-versions.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Combining all of the above, these are the recommended steps for upgrading a Shut
1717

1818
2. Update your project's `shuttle-...` dependencies in `Cargo.toml`:
1919
```toml Cargo.toml
20-
shuttle-runtime = "0.26.0"
20+
shuttle-runtime = "0.27.0"
2121
# etc
2222
```
2323

examples/actix-postgres.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,10 @@ edition = "2021"
9696

9797
[dependencies]
9898
actix-web = "4.3.1"
99-
shuttle-actix-web = "0.26.0"
100-
shuttle-runtime = "0.26.0"
99+
shuttle-actix-web = "0.27.0"
100+
shuttle-runtime = "0.27.0"
101101
serde = "1.0.148"
102-
shuttle-shared-db = { version = "0.26.0", features = ["postgres"] }
102+
shuttle-shared-db = { version = "0.27.0", features = ["postgres"] }
103103
sqlx = { version = "0.6.2", features = ["runtime-tokio-native-tls", "postgres"] }
104104
tokio = "1.26.0"
105105
```

examples/actix-websocket-actorless.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -396,8 +396,8 @@ futures = "0.3"
396396
reqwest = "0.11"
397397
serde = { version = "1.0", features = ["derive"] }
398398
serde_json = "1.0"
399-
shuttle-actix-web = "0.26.0"
400-
shuttle-runtime = "0.26.0"
399+
shuttle-actix-web = "0.27.0"
400+
shuttle-runtime = "0.27.0"
401401
tokio = { version = "1", features = ["rt-multi-thread", "sync"] }
402402
tracing = "0.1"
403403
```

examples/actix.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ edition = "2021"
4040

4141
[dependencies]
4242
actix-web = "4.3.1"
43-
shuttle-actix-web = "0.26.0"
44-
shuttle-runtime = "0.26.0"
43+
shuttle-actix-web = "0.27.0"
44+
shuttle-runtime = "0.27.0"
4545
tokio = "1.26.0"
4646
```
4747
</CodeGroup>

examples/axum-static-files.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ publish = false
4747

4848
[dependencies]
4949
axum = "0.6.18"
50-
shuttle-axum = "0.26.0"
51-
shuttle-runtime = "0.26.0"
50+
shuttle-axum = "0.27.0"
51+
shuttle-runtime = "0.27.0"
5252
tokio = "1.28.2"
5353
tower-http = { version = "0.4.0", features = ["fs"] }
5454
```

examples/axum-websockets.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -256,8 +256,8 @@ hyper = { version = "0.14.26", features = ["client", "http2"] }
256256
hyper-tls = "0.5.0"
257257
serde = { version = "1.0.163", features = ["derive"] }
258258
serde_json = "1.0.96"
259-
shuttle-axum = "0.26.0"
260-
shuttle-runtime = "0.26.0"
259+
shuttle-axum = "0.27.0"
260+
shuttle-runtime = "0.27.0"
261261
tokio = "1.28.2"
262262
tower-http = { version = "0.4.0", features = ["fs"] }
263263
```

examples/axum.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ edition = "2021"
3636

3737
[dependencies]
3838
axum = "0.6.18"
39-
shuttle-axum = "0.26.0"
40-
shuttle-runtime = "0.26.0"
39+
shuttle-axum = "0.27.0"
40+
shuttle-runtime = "0.27.0"
4141
tokio = "1.28.2"
4242
```
4343
</CodeGroup>

examples/poise.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ publish = false
7171
[dependencies]
7272
anyhow = "1.0.71"
7373
poise = "0.5.5"
74-
shuttle-poise = "0.26.0"
75-
shuttle-runtime = "0.26.0"
76-
shuttle-secrets = "0.26.0"
74+
shuttle-poise = "0.27.0"
75+
shuttle-runtime = "0.27.0"
76+
shuttle-secrets = "0.27.0"
7777
tracing = "0.1.37"
7878
tokio = "1.28.2"
7979
```

examples/rocket-jwt-authentication.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ jsonwebtoken = { version = "8.1.1", default-features = false }
3333
lazy_static = "1.4.0"
3434
rocket = { version = "0.5.0-rc.2", features = ["json"] }
3535
serde = { version = "1.0.148", features = ["derive"] }
36-
shuttle-rocket = "0.26.0"
37-
shuttle-runtime = "0.26.0"
36+
shuttle-rocket = "0.27.0"
37+
shuttle-runtime = "0.27.0"
3838
tokio = "1.26.0"
3939
```
4040
Your `main.rs` should look like this:

examples/rocket.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ edition = "2021"
3838

3939
[dependencies]
4040
rocket = "0.5.0-rc.2"
41-
shuttle-rocket = "0.26.0"
42-
shuttle-runtime = "0.26.0"
41+
shuttle-rocket = "0.27.0"
42+
shuttle-runtime = "0.27.0"
4343
tokio = "1.26.0"
4444
```
4545
</CodeGroup>

examples/serenity-todo.mdx

+4-4
Original file line numberDiff line numberDiff line change
@@ -268,10 +268,10 @@ edition = "2021"
268268
anyhow = "1.0.66"
269269
serde = "1.0.148"
270270
serenity = { version = "0.11.5", default-features = false, features = ["client", "gateway", "rustls_backend", "model"] }
271-
shuttle-secrets = "0.26.0"
272-
shuttle-serenity = "0.26.0"
273-
shuttle-runtime = "0.26.0"
274-
shuttle-shared-db = { version = "0.26.0", features = ["postgres"] }
271+
shuttle-secrets = "0.27.0"
272+
shuttle-serenity = "0.27.0"
273+
shuttle-runtime = "0.27.0"
274+
shuttle-shared-db = { version = "0.27.0", features = ["postgres"] }
275275
sqlx = { version = "0.6.2", features = ["runtime-tokio-native-tls", "postgres"] }
276276
tokio = "1.26.0"
277277
tracing = "0.1.37"

examples/serenity.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,10 @@ edition = "2021"
9090

9191
[dependencies]
9292
anyhow = "1.0.66"
93-
shuttle-serenity = "0.26.0"
94-
shuttle-runtime = "0.26.0"
93+
shuttle-serenity = "0.27.0"
94+
shuttle-runtime = "0.27.0"
9595
serenity = { version = "0.11.5", default-features = false, features = ["client", "gateway", "rustls_backend", "model"] }
96-
shuttle-secrets = "0.26.0"
96+
shuttle-secrets = "0.27.0"
9797
tokio = "1.26.0"
9898
tracing = "0.1.37"
9999
```

examples/shuttle-next.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ edition = "2021"
4242
crate-type = [ "cdylib" ]
4343

4444
[dependencies]
45-
shuttle-next = "0.26.0"
45+
shuttle-next = "0.27.0"
4646
```
4747

4848
Using the `shuttle-next::app!` macro, we can create HTTP API endpoints, setting the

shuttle-next/getting-started.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ edition = "2021"
2222
crate-type = [ "cdylib" ]
2323

2424
[dependencies]
25-
shuttle-next = "0.26.0"
25+
shuttle-next = "0.27.0"
2626
```
2727

2828
Using the `shuttle-next::app!` macro, we can create HTTP API endpoints, setting the

tutorials/custom-service.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ axum = "0.6.4"
4747
hyper = "0.14.24"
4848
poise = "0.5.2"
4949
serde = "1.0"
50-
shuttle-runtime = "0.26.0"
51-
shuttle-secrets = "0.26.0"
50+
shuttle-runtime = "0.27.0"
51+
shuttle-secrets = "0.27.0"
5252
tokio = "1.26.0"
5353
```
5454

tutorials/url-shortener.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,8 @@ edition = "2021"
129129

130130
[dependencies]
131131
rocket = "0.5.0-rc.2"
132-
shuttle-rocket = { version = "0.26.0" }
133-
shuttle-runtime = { version = "0.26.0" }
132+
shuttle-rocket = { version = "0.27.0" }
133+
shuttle-runtime = { version = "0.27.0" }
134134
tokio = { version = "1.26.0" }
135135
```
136136

tutorials/websocket-chat-app-js.mdx

+4-4
Original file line numberDiff line numberDiff line change
@@ -257,10 +257,10 @@ hyper = { version = "0.14", features = ["client", "http2"] }
257257
hyper-tls = "0.5"
258258
serde = { version = "1.0", features = ["derive"] }
259259
serde_json = "1.0"
260-
shuttle-axum = { version = "0.26.0" }
261-
shuttle-runtime = { version = "0.26.0" }
262-
shuttle-secrets = "0.26.0"
263-
shuttle-static-folder = "0.26.0"
260+
shuttle-axum = { version = "0.27.0" }
261+
shuttle-runtime = { version = "0.27.0" }
262+
shuttle-secrets = "0.27.0"
263+
shuttle-static-folder = "0.27.0"
264264
sync_wrapper = "0.1"
265265
tokio = { version = "1", features = ["full"] }
266266
tower-http = { version = "0.3.5", features = ["fs", "auth"]}

0 commit comments

Comments
 (0)