diff options
author | Christian Duerr <contact@christianduerr.com> | 2024-02-12 21:01:20 +0100 |
---|---|---|
committer | Kirill Chibisov <contact@kchibisov.com> | 2024-02-14 01:20:49 +0400 |
commit | 1645a70168ca012bcf6f2cab42271dd51ae682a2 (patch) | |
tree | afd9cc1091a9a42e61ec2333686795a6fee100ed /CONTRIBUTING.md | |
parent | 5c4469ffa7727b7a8d82f3f8261613a30591b4de (diff) | |
download | alacritty-1645a70168ca012bcf6f2cab42271dd51ae682a2.tar.gz alacritty-1645a70168ca012bcf6f2cab42271dd51ae682a2.zip |
Use dynamic MSRV for oldstable CI
Instead of manually specifying the oldstable version in all our CI
scripts, it is now pulled from the `Cargo.toml` which simplifies the
update process.
The contributing guide has also been updated to not include the explicit
version and its wording has been loosened a bit to correctly represent
current maintenance practices.
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r-- | CONTRIBUTING.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 334a3e76..b07c02ef 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -42,8 +42,9 @@ and [easy](https://github.com/alacritty/alacritty/issues?q=is%3Aopen+is%3Aissue+label%3A%22D+-+easy%22) issues. -Please note that the minimum supported version of Alacritty is Rust 1.70.0. All patches are expected -to work with the minimum supported version. +You can find the minimum supported Rust version in Alacritty's manifest file +(`cat alacritty/Cargo.toml | grep "rust-version"`). Alacritty **must** always +build with the MSRV and bumping it should be avoided if possible. Since `alacritty_terminal`'s version always tracks the next release, make sure that the version is bumped according to semver when necessary. |