Skip to content

Commit fc1da1d

Browse files
authored
chore: v0.55.0 (#336)
* 0.55.0 * add rama example
1 parent 8b8e5a4 commit fc1da1d

27 files changed

+95
-53
lines changed

docs/logs.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ By default, Shuttle will set up a global tracing subscriber behind the scenes.
4646
If you'd rather set up your own tracing or logging, you can opt-out by disabling the default features on `shuttle-runtime`:
4747

4848
```toml Cargo.toml
49-
shuttle-runtime = { version = "0.54.0", default-features = false }
49+
shuttle-runtime = { version = "0.55.0", default-features = false }
5050
```
5151

5252
With the default features enabled you can skip the step of initializing your subscriber when implementing [tracing](https://docs.rs/tracing/latest/tracing/)

docs/telemetry/getting-started.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ cargo add shuttle-runtime -F setup-otel-exporter
2424
The `shuttle-runtime` entry in your project's `Cargo.toml` should now look something like:
2525

2626
```toml
27-
shuttle-runtime = { version = "0.54.0", features = ["setup-otel-exporter"] }
27+
shuttle-runtime = { version = "0.55.0", features = ["setup-otel-exporter"] }
2828
```
2929
> **Note:** Your specific entry may not be *identical*, that's OK. The important part is that `"setup-otel-exporter"` appears in the `features` array.
3030

examples/actix-cookie-authentication.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ edition = "2021"
3333
actix-identity = "0.6.0"
3434
actix-session = { version = "0.8.0", features = ["cookie-session"] }
3535
actix-web = "4.3.1"
36-
shuttle-actix-web = "0.54.0"
37-
shuttle-runtime = "0.54.0"
36+
shuttle-actix-web = "0.55.0"
37+
shuttle-runtime = "0.55.0"
3838
tokio = "1.26.0"
3939
```
4040
Your `main.rs` should look like this:

examples/actix-postgres.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,10 +117,10 @@ edition = "2021"
117117

118118
[dependencies]
119119
actix-web = "4.3.1"
120-
shuttle-actix-web = "0.54.0"
121-
shuttle-runtime = "0.54.0"
120+
shuttle-actix-web = "0.55.0"
121+
shuttle-runtime = "0.55.0"
122122
serde = "1.0.148"
123-
shuttle-shared-db = { version = "0.54.0", features = ["postgres", "sqlx"] }
123+
shuttle-shared-db = { version = "0.55.0", features = ["postgres", "sqlx"] }
124124
sqlx = "0.8.2"
125125
tokio = "1.26.0"
126126
```

examples/actix-static-files.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ edition = "2021"
5959
[dependencies]
6060
actix-web = "4.3.1"
6161
actix-files = "0.6.2"
62-
shuttle-actix-web = "0.54.0"
63-
shuttle-runtime = "0.54.0"
62+
shuttle-actix-web = "0.55.0"
63+
shuttle-runtime = "0.55.0"
6464
tokio = "1.26.0"
6565
```
6666

examples/actix-websocket-actorless.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -405,8 +405,8 @@ futures = "0.3"
405405
reqwest = "0.11"
406406
serde = { version = "1.0", features = ["derive"] }
407407
serde_json = "1.0"
408-
shuttle-actix-web = "0.54.0"
409-
shuttle-runtime = "0.54.0"
408+
shuttle-actix-web = "0.55.0"
409+
shuttle-runtime = "0.55.0"
410410
tokio = { version = "1", features = ["rt-multi-thread", "sync"] }
411411
tracing = "0.1"
412412
```

examples/actix.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ edition = "2021"
4646

4747
[dependencies]
4848
actix-web = "4.3.1"
49-
shuttle-actix-web = "0.54.0"
50-
shuttle-runtime = "0.54.0"
49+
shuttle-actix-web = "0.55.0"
50+
shuttle-runtime = "0.55.0"
5151
tokio = "1.26.0"
5252
```
5353
</CodeGroup>

examples/axum-jwt-authentication.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,8 +221,8 @@ jsonwebtoken = "8.3.0"
221221
once_cell = "1.18.0"
222222
serde = { version = "1.0.188", features = ["derive"] }
223223
serde_json = "1.0.107"
224-
shuttle-axum = "0.54.0"
225-
shuttle-runtime = "0.54.0"
224+
shuttle-axum = "0.55.0"
225+
shuttle-runtime = "0.55.0"
226226
tokio = "1.28.2"
227227
tracing-subscriber = "0.3.17"
228228
```

examples/axum-postgres.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,9 @@ edition = "2021"
102102
[dependencies]
103103
axum = "0.7.3"
104104
serde = { version = "1.0.188", features = ["derive"] }
105-
shuttle-axum = "0.54.0"
106-
shuttle-runtime = "0.54.0"
107-
shuttle-shared-db = { version = "0.54.0", features = ["postgres", "sqlx"] }
105+
shuttle-axum = "0.55.0"
106+
shuttle-runtime = "0.55.0"
107+
shuttle-shared-db = { version = "0.55.0", features = ["postgres", "sqlx"] }
108108
sqlx = "0.8.2"
109109
tokio = "1.28.2"
110110
```

examples/axum-static-files.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ publish = false
5858

5959
[dependencies]
6060
axum = "0.7.3"
61-
shuttle-axum = "0.54.0"
62-
shuttle-runtime = "0.54.0"
61+
shuttle-axum = "0.55.0"
62+
shuttle-runtime = "0.55.0"
6363
tokio = "1.28.2"
6464
tower-http = { version = "0.5.0", features = ["fs"] }
6565
```

0 commit comments

Comments
 (0)