diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f002721..b902da77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,7 +16,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) * fix(terminal): workaround for windows terminal not interpreting underline colors with semicolons (https://github.com/zellij-org/zellij/pull/3440) * dependencies: switch from wasmer to wasmtime (https://github.com/zellij-org/zellij/pull/3349) * feat(ui): status-bar redesign (https://github.com/zellij-org/zellij/pull/3475) -* chore: Remove MSRV from Cargo.toml (https://github.com/zellij-org/zellij/pull/3480) +* chore: Update MSRV in Cargo.toml (https://github.com/zellij-org/zellij/pull/3482) ## [0.40.1] - 2024-05-02 * fix(sessions): issue where sessions would occasionally become unresponsive (https://github.com/zellij-org/zellij/pull/3281) diff --git a/Cargo.toml b/Cargo.toml index 15cc57bb..26987d01 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,6 +8,8 @@ license = "MIT" repository = "https://github.com/zellij-org/zellij" homepage = "https://zellij.dev" include = ["src/**/*", "assets/layouts/*", "assets/config/*", "LICENSE.md", "README.md", "!**/*_test.*", "!**/tests/**/*"] +# NOTE: When updating this, modify `channel` in `rust-toolchain.toml` accordingly +rust-version = "1.75" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/rust-toolchain.toml b/rust-toolchain.toml index c4f60e62..d01dbbdb 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,5 +1,6 @@ # This file is updated by `update-toolchain.sh` [toolchain] +# NOTE: When updating this, modify `rust-version` in `Cargo.toml` accordingly channel = "1.75.0" components = ["rustfmt", "clippy", "rust-analysis"] targets = ["wasm32-wasi", "x86_64-unknown-linux-musl"]