-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Avoid using the format ident Rust feature #1881
Merged
Merged
Conversation
This file contains 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
archseer
approved these changes
Mar 30, 2022
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.
Thanks! I think this is reasonable 👍🏻
Closed
This was referenced Apr 8, 2022
Closed
Closed
the-mikedavis
added a commit
to the-mikedavis/helix
that referenced
this pull request
May 22, 2022
It's very easy to use new rust features without realizing it since the CI and local development workflows may use the latest rust version. We try to keep some backwards compatibility with rust versions to make packaging easier for some OS-level package-managers like Void Linux's. See helix-editor#1881. This change adds a new CI check which uses the cargo-msrv crate to verify an MSRV version recorded in helix-term's Cargo.toml. When changing MSRV, we can then edit `helix-term/Cargo.toml`'s `package.metadata.msrv` key. The MSRV is set at 1.60.0 for the sake of checkmarks on builds but ideally we want to support 1.57.0. The PR that closes helix-editor#2460 should set this MSRV metadata key back to 1.57.0. Closes helix-editor#2482.
the-mikedavis
added a commit
to the-mikedavis/helix
that referenced
this pull request
May 22, 2022
It's very easy to use new rust features without realizing it since the CI and local development workflows may use the latest rust version. We try to keep some backwards compatibility with rust versions to make packaging easier for some OS-level package-managers like Void Linux's. See helix-editor#1881. This change adds a new CI check which uses the cargo-msrv crate to verify an MSRV version recorded in helix-term's Cargo.toml. When changing MSRV, we can then edit `helix-term/Cargo.toml`'s `package.metadata.msrv` key. The MSRV is set at 1.60.0 for the sake of checkmarks on builds but ideally we want to support 1.57.0. The PR that fixes the MSRV in helix-editor#2460 should set this MSRV metadata key back to 1.57.0. Closes helix-editor#2482.
the-mikedavis
added a commit
to the-mikedavis/helix
that referenced
this pull request
May 22, 2022
It's very easy to use new rust features without realizing it since the CI and local development workflows may use the latest rust version. We try to keep some backwards compatibility with rust versions to make packaging easier for some OS-level package-managers like Void Linux's. See helix-editor#1881. This change adds a new CI check which uses the cargo-msrv crate to verify an MSRV version recorded in helix-term's Cargo.toml. When changing MSRV, we can then edit `helix-term/Cargo.toml`'s `package.metadata.msrv` key. The MSRV is set at 1.60.0 for the sake of checkmarks on builds but ideally we want to support 1.57.0. The PR that fixes the MSRV in helix-editor#2460 should set this MSRV metadata key back to 1.57.0. Closes helix-editor#2482.
the-mikedavis
added a commit
to the-mikedavis/helix
that referenced
this pull request
May 23, 2022
It's very easy to use new rust features without realizing it since the CI and local development workflows may use the latest rust version. We try to keep some backwards compatibility with rust versions to make packaging easier for some OS-level package-managers like Void Linux's. See helix-editor#1881. This change runs the "Check" step for the pinned version of rust in the rust-toolchain.toml file as well as the MSRV version in a matrix. In order to bump the MSRV, we need to edit .github/workflows/msrv-rust-toolchain.toml This commit sets the MSRV as 1.60.0 but a later child commit will reduce the MSRV back to 1.57.0. Closes helix-editor#2482.
the-mikedavis
added a commit
to the-mikedavis/helix
that referenced
this pull request
May 23, 2022
It's very easy to use new rust features without realizing it since the CI and local development workflows may use the latest rust version. We try to keep some backwards compatibility with rust versions to make packaging easier for some OS-level package-managers like Void Linux's. See helix-editor#1881. This change runs the "Check" step for the pinned version of rust in the rust-toolchain.toml file as well as the MSRV version in a matrix. In order to bump the MSRV, we need to edit .github/workflows/msrv-rust-toolchain.toml This commit sets the MSRV as 1.60.0 but a later child commit will reduce the MSRV back to 1.57.0. Closes helix-editor#2482.
the-mikedavis
added a commit
to the-mikedavis/helix
that referenced
this pull request
May 23, 2022
It's very easy to use new rust features without realizing it since the CI and local development workflows may use the latest rust version. We try to keep some backwards compatibility with rust versions to make packaging easier for some OS-level package-managers like Void Linux's. See helix-editor#1881. This change runs the "Check" step for the pinned version of rust in the rust-toolchain.toml file as well as the MSRV version in a matrix. In order to bump the MSRV, we need to edit .github/workflows/msrv-rust-toolchain.toml This commit sets the MSRV as 1.60.0 but a later child commit will reduce the MSRV back to 1.57.0. Closes helix-editor#2482.
archseer
pushed a commit
that referenced
this pull request
May 23, 2022
It's very easy to use new rust features without realizing it since the CI and local development workflows may use the latest rust version. We try to keep some backwards compatibility with rust versions to make packaging easier for some OS-level package-managers like Void Linux's. See #1881. This change runs the "Check" step for the pinned version of rust in the rust-toolchain.toml file as well as the MSRV version in a matrix. In order to bump the MSRV, we need to edit .github/workflows/msrv-rust-toolchain.toml This commit sets the MSRV as 1.60.0 but a later child commit will reduce the MSRV back to 1.57.0. Closes #2482.
mtoohey31
pushed a commit
to mtoohey31/helix
that referenced
this pull request
Jun 15, 2022
It's very easy to use new rust features without realizing it since the CI and local development workflows may use the latest rust version. We try to keep some backwards compatibility with rust versions to make packaging easier for some OS-level package-managers like Void Linux's. See helix-editor#1881. This change runs the "Check" step for the pinned version of rust in the rust-toolchain.toml file as well as the MSRV version in a matrix. In order to bump the MSRV, we need to edit .github/workflows/msrv-rust-toolchain.toml This commit sets the MSRV as 1.60.0 but a later child commit will reduce the MSRV back to 1.57.0. Closes helix-editor#2482.
mtoohey31
pushed a commit
to mtoohey31/helix
that referenced
this pull request
Jun 15, 2022
It's very easy to use new rust features without realizing it since the CI and local development workflows may use the latest rust version. We try to keep some backwards compatibility with rust versions to make packaging easier for some OS-level package-managers like Void Linux's. See helix-editor#1881. This change runs the "Check" step for the pinned version of rust in the rust-toolchain.toml file as well as the MSRV version in a matrix. In order to bump the MSRV, we need to edit .github/workflows/msrv-rust-toolchain.toml This commit sets the MSRV as 1.60.0 but a later child commit will reduce the MSRV back to 1.57.0. Closes helix-editor#2482.
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.
While this feature is undeniably ergonomic, it mostly inflates the MSRV, which is a problem over at Void Linux where bumping Rust version is a lengthy process.
Checked with
cargo-msrv
that with these changes the MSRV drops to 1.57