test(msrv): use a far future "newer" version#15693
Merged
ehuss merged 1 commit intorust-lang:masterfrom Jun 22, 2025
Merged
Conversation
Two tests were using `.rust_version("1.90.0")` for a "newer" Rust, but
this failed in rust-lang/rust#142792 for the start of the *real* 1.90.0.
Let's bump that to 1.999.0 so we won't have to deal with it for a while.
Collaborator
ehuss
approved these changes
Jun 22, 2025
Contributor
ehuss
left a comment
There was a problem hiding this comment.
Thanks! I'm not 100% positive why it was done the way that it was, but this seems like it should fix the issue. I'll post a submodule update.
Contributor
|
Hm, I would like to also get #15696 merged before the beta branch (otherwise we would need to immediately beta backport it). Would it be ok to wait until tomorrow (or whenever someone gets back online)? |
Member
Author
|
Sure, I think it's ok if the 1.89/1.90 branching slips a little bit. |
bors
added a commit
to rust-lang/rust
that referenced
this pull request
Jun 23, 2025
Update cargo 7 commits in 2251525ae503fa196f6d7f9ce6d32eccb2d5f044..84709f085062cbf3c51fa507527c1b2334015178 2025-06-16 22:01:27 +0000 to 2025-06-22 23:58:39 +0000 - Bump cargo-util-schemas version (rust-lang/cargo#15696) - test(msrv): use a far future "newer" version (rust-lang/cargo#15693) - Plumb rustc `-Zhint-mostly-unused` flag through as a profile option (rust-lang/cargo#15643) - Disable lldb test, which seems to be broken due to issues with lldb (rust-lang/cargo#15687) - docs(contrib): change clap URL to docs.rs/clap (rust-lang/cargo#15682) - feat: Introduce perma unstable `--compile-time-deps` option for `cargo build` (rust-lang/cargo#15674) - fix: Failing tests on rustc nightly (rust-lang/cargo#15679)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Two tests were using
.rust_version("1.90.0")for a "newer" Rust, butthis failed in rust-lang/rust#142792 for the start of the real 1.90.0.
Let's bump that to 1.999.0 so we won't have to deal with it for a while.