Skip to content

Commit 33b9e55

Browse files
authored
chore: v0.56.0 (#2076)
* chore: v0.56.0 * bump examples * audit * changelog
1 parent bf24b71 commit 33b9e55

File tree

33 files changed

+104
-65
lines changed

33 files changed

+104
-65
lines changed

.cargo/audit.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,7 @@
22
ignore = [
33
# Advisory about a vulnerability in rsa, which we don't use, but it is pulled in via sqlx due
44
# to a bug in cargo. See https://github.com/shuttle-hq/shuttle/pull/1475 for context.
5-
"RUSTSEC-2023-0071"
5+
"RUSTSEC-2023-0071",
6+
# Dependency of rmcp
7+
"RUSTSEC-2024-0436",
68
]

.github/ISSUE_TEMPLATE/BUG-REPORT.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ body:
1818
attributes:
1919
label: Version
2020
description: What version of Shuttle CLI are you running (`shuttle --version`)?
21-
placeholder: "v0.55.0"
21+
placeholder: "v0.56.0"
2222
validations:
2323
required: true
2424
- type: dropdown

CHANGELOG.md

Lines changed: 38 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,18 @@ members = [
1414
exclude = ["examples", "resources", "services"]
1515

1616
[workspace.package]
17-
version = "0.55.0"
17+
version = "0.56.0"
1818
edition = "2021"
1919
license = "Apache-2.0"
2020
repository = "https://github.com/shuttle-hq/shuttle"
2121

2222
[workspace.dependencies]
23-
shuttle-api-client = { path = "api-client", version = "0.55.0", default-features = false }
24-
shuttle-codegen = { path = "codegen", version = "0.55.0" }
25-
shuttle-common = { path = "common", version = "0.55.0" }
26-
shuttle-ifc = { path = "ifc", version = "0.55.0" }
27-
shuttle-mcp = { path = "mcp", version = "0.55.0" }
28-
shuttle-service = { path = "service", version = "0.55.0" }
23+
shuttle-api-client = { path = "api-client", version = "0.56.0", default-features = false }
24+
shuttle-codegen = { path = "codegen", version = "0.56.0" }
25+
shuttle-common = { path = "common", version = "0.56.0" }
26+
shuttle-ifc = { path = "ifc", version = "0.56.0" }
27+
shuttle-mcp = { path = "mcp", version = "0.56.0" }
28+
shuttle-service = { path = "service", version = "0.56.0" }
2929

3030
anyhow = "1.0.66"
3131
assert_cmd = "2.0.6"

admin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "shuttle-admin"
3-
version = "0.55.0"
3+
version = "0.56.0"
44
edition = "2021"
55
publish = false
66

api-client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "shuttle-api-client"
3-
version = "0.55.0"
3+
version = "0.56.0"
44
edition.workspace = true
55
license.workspace = true
66
repository.workspace = true

cargo-shuttle/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cargo-shuttle"
3-
version = "0.55.0"
3+
version = "0.56.0"
44
edition.workspace = true
55
license.workspace = true
66
repository.workspace = true

codegen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "shuttle-codegen"
3-
version = "0.55.0"
3+
version = "0.56.0"
44
edition.workspace = true
55
license.workspace = true
66
repository.workspace = true

common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "shuttle-common"
3-
version = "0.55.0"
3+
version = "0.56.0"
44
edition.workspace = true
55
license.workspace = true
66
repository.workspace = true

0 commit comments

Comments
 (0)