Skip to content

Commit 2025158

Browse files
authored
[beta-1.87] chore: Bump cargo-util-schemas to 0.8.1 (#15402)
### What does this PR try to resolve? This is required due to a SemVer breaking change introduced in 0.7.3. See * <#15387> * <#15397> These commits are cherry-picked in order to make CI happy: * 62bd1ad
2 parents a6c604d + 726f8b0 commit 2025158

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ cargo-platform = { path = "crates/cargo-platform", version = "0.2.0" }
3434
cargo-test-macro = { version = "0.4.2", path = "crates/cargo-test-macro" }
3535
cargo-test-support = { version = "0.7.1", path = "crates/cargo-test-support" }
3636
cargo-util = { version = "0.2.20", path = "crates/cargo-util" }
37-
cargo-util-schemas = { version = "0.7.4", path = "crates/cargo-util-schemas" }
37+
cargo-util-schemas = { version = "0.8.1", path = "crates/cargo-util-schemas" }
3838
cargo_metadata = "0.19.1"
3939
clap = "4.5.28"
4040
clap_complete = { version = "4.5.44", features = ["unstable-dynamic"] }

crates/cargo-util-schemas/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-util-schemas"
3-
version = "0.7.4"
3+
version = "0.8.1"
44
rust-version = "1.85" # MSRV:1
55
edition.workspace = true
66
license.workspace = true

src/doc/src/reference/semver.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1341,7 +1341,7 @@ struct Foo;
13411341
impl Trait for Foo {}
13421342
13431343
fn main() {
1344-
let obj: Box<dyn Trait> = Box::new(Foo); // Error: cannot be made into an object
1344+
let obj: Box<dyn Trait> = Box::new(Foo); // Error: the trait `Trait` is not dyn compatible
13451345
}
13461346
```
13471347

0 commit comments

Comments
 (0)