-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Bump to 1.24.0 #46288
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Bump to 1.24.0 #46288
Conversation
(rust_highfive has picked a reviewer for you, use r? to override) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
r=me if you don't want to worry about rustfmt-nightly being duplicated. Feel free to just file an issue and cc me on it too.
src/Cargo.lock
Outdated
@@ -2752,15 +2775,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
"checksum rls-vfs 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "ffd34691a510938bb67fe0444fb363103c73ffb31c121d1e16bc92d8945ea8ff" | |||
"checksum rustc-demangle 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "aee45432acc62f7b9a108cc054142dac51f979e69e71ddce7d6fc7adf29e817e" | |||
"checksum rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)" = "dcf128d1287d2ea9d80910b5f1120d0b8eede3fbf1abe91c40d39ea7d51e6fda" | |||
"checksum rustfmt-nightly 0.2.16 (registry+https://github.com/rust-lang/crates.io-index)" = "8cb7fea6f3c17082c41911b1de35e6585ebbf01f08435f07014f0327b56527b5" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I feel like maybe something didn't quite resolve correctly here? We're depending on two versions of rustfmt with this -- one in-tree (I think) and one on crates.io. Technically not a problem, but maybe worth looking into?
src/liballoc/boxed.rs
Outdated
@@ -365,9 +362,6 @@ impl<T: ?Sized> Box<T> { | |||
issue = "27730")] | |||
#[inline] | |||
pub fn into_unique(b: Box<T>) -> Unique<T> { | |||
#[cfg(stage0)] | |||
return unsafe { mem::transmute(b) }; | |||
#[cfg(not(stage0))] | |||
return { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: looks like the return
& {}
s could be removed too
@Mark-Simulacrum is already reviewing, but this does LGTM. |
I think you missed the |
☔ The latest upstream changes (presumably #44884) made this pull request unmergeable. Please resolve the merge conflicts. |
ad8a97b
to
2bfaacc
Compare
@bors: r=Mark-Simulacrum |
📌 Commit 2bfaacc has been approved by |
☔ The latest upstream changes (presumably #46144) made this pull request unmergeable. Please resolve the merge conflicts. |
Also remove a number of `stage0` annotations and such
2bfaacc
to
a850bb0
Compare
@bors: r=Mark-Simulacrum |
📌 Commit a850bb0 has been approved by |
Bump to 1.24.0 * Update the in-tree version number * Update the bootstrap compiler * Remove `cfg(stage0)` annotations * Update crate dependencies * Update Cargo itself
☀️ Test successful - status-appveyor, status-travis |
cfg(stage0)
annotations