Skip to content

Commit 4a4d795

Browse files
committed
Auto merge of #11823 - weihanglo:rust-1.69.0, r=ehuss
[beta-1.69] backport #11820 Beta backports: - #11820 In order to make CI pass, the following PRs are also cherry-picked: - #11817
2 parents e335ad3 + 32dbbce commit 4a4d795

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ bytesize = "1.0"
2222
cargo-platform = { path = "crates/cargo-platform", version = "0.1.2" }
2323
cargo-util = { path = "crates/cargo-util", version = "0.2.3" }
2424
clap = "4.1.3"
25-
crates-io = { path = "crates/crates-io", version = "0.35.1" }
25+
crates-io = { path = "crates/crates-io", version = "0.36.0" }
2626
curl = { version = "0.4.44", features = ["http2"] }
2727
curl-sys = "0.4.59"
2828
env_logger = "0.10.0"

crates/crates-io/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "crates-io"
3-
version = "0.35.1"
3+
version = "0.36.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/rust-lang/cargo"

src/doc/src/reference/semver.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -702,7 +702,7 @@ impl Trait for Foo {}
702702
703703
fn main() {
704704
let x = Foo;
705-
x.foo(1); // Error: this function takes 0 arguments
705+
x.foo(1); // Error: this method takes 0 arguments but 1 argument was supplied
706706
}
707707
```
708708

0 commit comments

Comments
 (0)