diff --git a/CHANGELOG.md b/CHANGELOG.md index f7ee0b93ce..88840f8962 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) * fix(plugins): display errors properly (https://github.com/zellij-org/zellij/pull/2975) * feat(terminal): implement synchronized renders (https://github.com/zellij-org/zellij/pull/2977) * perf(plugins): improve plugin download & load feature (https://github.com/zellij-org/zellij/pull/3001) +* chore: bump Rust toolchain to 1.75.0 (https://github.com/zellij-org/zellij/pull/3039) ## [0.39.2] - 2023-11-29 * fix(cli): typo in cli help (https://github.com/zellij-org/zellij/pull/2906) diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 6f03903d38..c4f60e620b 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,5 +1,5 @@ # This file is updated by `update-toolchain.sh` [toolchain] -channel = "1.67.0" +channel = "1.75.0" components = ["rustfmt", "clippy", "rust-analysis"] targets = ["wasm32-wasi", "x86_64-unknown-linux-musl"] diff --git a/zellij-utils/src/input/layout.rs b/zellij-utils/src/input/layout.rs index 312286ec0b..40ca72097b 100644 --- a/zellij-utils/src/input/layout.rs +++ b/zellij-utils/src/input/layout.rs @@ -883,7 +883,7 @@ impl Layout { None => { let home = find_default_config_dir(); let Some(home) = home else { - return Layout::stringified_from_default_assets(layout) + return Layout::stringified_from_default_assets(layout); }; let layout_path = &home.join(layout);