From 6e03f1a65b2b168f246619d58e1f8828fe3211cd Mon Sep 17 00:00:00 2001 From: Nicholas Bishop Date: Thu, 28 Nov 2024 12:17:32 -0500 Subject: [PATCH] Increase MSRV to 1.81 --- .github/workflows/msrv_toolchain.toml | 2 +- Cargo.toml | 2 +- uefi/CHANGELOG.md | 2 +- uefi/src/lib.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/msrv_toolchain.toml b/.github/workflows/msrv_toolchain.toml index 2b327fb17..8ff6e69dd 100644 --- a/.github/workflows/msrv_toolchain.toml +++ b/.github/workflows/msrv_toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "1.79" +channel = "1.81" targets = ["aarch64-unknown-uefi", "i686-unknown-uefi", "x86_64-unknown-uefi"] diff --git a/Cargo.toml b/Cargo.toml index 5c6ab3b82..cdf889687 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ edition = "2021" keywords = ["uefi", "efi"] license = "MPL-2.0" repository = "https://github.com/rust-osdev/uefi-rs" -rust-version = "1.79" +rust-version = "1.81" [workspace.dependencies] bitflags = "2.0.0" diff --git a/uefi/CHANGELOG.md b/uefi/CHANGELOG.md index de015479c..0e27766e7 100644 --- a/uefi/CHANGELOG.md +++ b/uefi/CHANGELOG.md @@ -1,7 +1,7 @@ # uefi - [Unreleased] ## Changed -- MSRV increased to 1.79. +- MSRV increased to 1.81. # uefi - 0.33.0 (2024-10-23) diff --git a/uefi/src/lib.rs b/uefi/src/lib.rs index c055a13ed..6ce68cfcb 100644 --- a/uefi/src/lib.rs +++ b/uefi/src/lib.rs @@ -66,7 +66,7 @@ //! //! ## MSRV //! -//! The minimum supported Rust version is currently 1.79. +//! The minimum supported Rust version is currently 1.81. //! Our policy is to support at least the past two stable releases. //! //! # API/User Documentation, Documentation Structure, and other Resources