From ec3fe023cfc81eaea9e566aa7ebc14ab8c0c7af5 Mon Sep 17 00:00:00 2001 From: Alexander Stein Date: Fri, 10 Jan 2025 10:20:40 +0100 Subject: [PATCH 1/2] bump MSRV to 1.63.0 --- CHANGELOG.md | 1 + Cargo.toml | 1 + README.md | 4 ++-- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ebdef820..227900221 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ [Full Changelog](https://github.com/rust-embedded/rust-spidev/compare/0.6.0...HEAD) - Added support for querying the configuration of a SPI device. +- Minimum Supported Rust Version is now 1.63.0 ## 0.6.0 / 2023-08-03 diff --git a/Cargo.toml b/Cargo.toml index 89387b480..c055157c9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,6 +17,7 @@ Provides access to the Linux spidev interface. This interface allows for configuration of the spidev device, half-duplex SPI access, and full-duplex SPI access. """ +rust-version = "1.63" [dependencies] libc = "0.2" diff --git a/README.md b/README.md index 6ba517aff..5cbe1beb1 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![Build Status](https://github.com/rust-embedded/rust-spidev/workflows/CI/badge.svg)](https://github.com/rust-embedded/rust-spidev/actions) [![Version](https://img.shields.io/crates/v/spidev.svg)](https://crates.io/crates/spidev) [![License](https://img.shields.io/crates/l/spidev.svg)](https://github.com/rust-embedded/rust-spidev/blob/master/README.md#license) -![Minimum Supported Rust Version](https://img.shields.io/badge/rustc-1.56.1+-blue.svg) +![Minimum Supported Rust Version](https://img.shields.io/badge/rustc-1.63.0+-blue.svg) [Documentation](https://docs.rs/spidev) @@ -77,7 +77,7 @@ The following features are implemented and planned for the library: ## Minimum Supported Rust Version (MSRV) -This crate is guaranteed to compile on stable Rust 1.56.1 and up. It *might* +This crate is guaranteed to compile on stable Rust 1.63.0 and up. It *might* compile with older versions but that may change in any new patch release. ## Cross Compiling From 32488b8e0c093264ff74b0dd268e229ccadf47ac Mon Sep 17 00:00:00 2001 From: Alexander Stein Date: Fri, 10 Jan 2025 10:21:29 +0100 Subject: [PATCH 2/2] Update CI --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2c8d446c4..8c2a1272b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: strategy: matrix: # All published crates must build on stable. - rust: [stable, beta, 1.56.1] + rust: [stable, beta, 1.63.0] # The default target we're compiling on and for. TARGET: [x86_64-unknown-linux-gnu, x86_64-unknown-linux-musl]