From 5a41d7f3bf1f8557a7f02234935fbcddd13c8288 Mon Sep 17 00:00:00 2001 From: Jonathan Bastien-Filiatrault Date: Tue, 20 May 2025 21:59:58 -0400 Subject: [PATCH 1/4] Update MSRV to 1.82. backtrace requires it. --- .github/workflows/ci.yml | 4 ++-- Cargo.toml | 1 + README.md | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 569cd2d..628c3e5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,7 @@ jobs: include: # MSRV - - rust: 1.65.0 + - rust: 1.82.0 TARGET: x86_64-unknown-linux-gnu # Test nightly but don't fail @@ -109,7 +109,7 @@ jobs: - uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: 1.65.0 + toolchain: 1.82.0 components: clippy - uses: actions-rs/clippy-check@v1 diff --git a/Cargo.toml b/Cargo.toml index c7d44a9..55822c8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,6 +10,7 @@ categories = ["embedded", "hardware-support", "os", "os::unix-apis"] keywords = ["linux", "gpio", "gpiochip", "embedded"] license = "MIT OR Apache-2.0" edition = "2018" +rust-version = "1.82" [features] default = [] diff --git a/README.md b/README.md index 5efdcef..a44d08d 100644 --- a/README.md +++ b/README.md @@ -206,7 +206,7 @@ to be considered reliable. ## Minimum Supported Rust Version (MSRV) -This crate is guaranteed to compile on stable Rust 1.65.0 and up. It *might* +This crate is guaranteed to compile on stable Rust 1.82.0 and up. It *might* compile with older versions but that may change in any new patch release. ## License From 4462f510f9687b858171c1ebb8bafb76b48c7a74 Mon Sep 17 00:00:00 2001 From: Jonathan Bastien-Filiatrault Date: Wed, 2 Jul 2025 21:45:51 -0400 Subject: [PATCH 2/4] Update Cargo.toml Co-authored-by: Diego Barrios Romero --- Cargo.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 55822c8..c7d44a9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,6 @@ categories = ["embedded", "hardware-support", "os", "os::unix-apis"] keywords = ["linux", "gpio", "gpiochip", "embedded"] license = "MIT OR Apache-2.0" edition = "2018" -rust-version = "1.82" [features] default = [] From 924ac5ef0157f5bea5dcc7aa34daae787c5f08f2 Mon Sep 17 00:00:00 2001 From: Jonathan Bastien-Filiatrault Date: Wed, 2 Jul 2025 21:47:53 -0400 Subject: [PATCH 3/4] Update changelog. --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 01d2c7c..7d7fdf9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +- MSRV is now 1.82.0. + ## [v0.6.0] - 2023-09-11 - Updated nix to version `0.27`. From 4186e9d1d3ca9063904b337afe17ab039b29f04d Mon Sep 17 00:00:00 2001 From: Diego Barrios Romero Date: Thu, 3 Jul 2025 09:00:38 +0200 Subject: [PATCH 4/4] Update CHANGELOG.md --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d7fdf9..135e768 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Changed + - MSRV is now 1.82.0. ## [v0.6.0] - 2023-09-11