Skip to content

Commit a048aa6

Browse files
authored
Merge pull request #47 from tq-steina/master
Updates for 0.6.1 release
2 parents 75c319b + 32488b8 commit a048aa6

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
strategy:
1919
matrix:
2020
# All published crates must build on stable.
21-
rust: [stable, beta, 1.56.1]
21+
rust: [stable, beta, 1.63.0]
2222

2323
# The default target we're compiling on and for.
2424
TARGET: [x86_64-unknown-linux-gnu, x86_64-unknown-linux-musl]

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
[Full Changelog](https://github.com/rust-embedded/rust-spidev/compare/0.6.0...HEAD)
66

77
- Added support for querying the configuration of a SPI device.
8+
- Minimum Supported Rust Version is now 1.63.0
89

910
## 0.6.0 / 2023-08-03
1011

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Provides access to the Linux spidev interface. This
1717
interface allows for configuration of the spidev device,
1818
half-duplex SPI access, and full-duplex SPI access.
1919
"""
20+
rust-version = "1.63"
2021

2122
[dependencies]
2223
libc = "0.2"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Build Status](https://github.com/rust-embedded/rust-spidev/workflows/CI/badge.svg)](https://github.com/rust-embedded/rust-spidev/actions)
44
[![Version](https://img.shields.io/crates/v/spidev.svg)](https://crates.io/crates/spidev)
55
[![License](https://img.shields.io/crates/l/spidev.svg)](https://github.com/rust-embedded/rust-spidev/blob/master/README.md#license)
6-
![Minimum Supported Rust Version](https://img.shields.io/badge/rustc-1.56.1+-blue.svg)
6+
![Minimum Supported Rust Version](https://img.shields.io/badge/rustc-1.63.0+-blue.svg)
77

88
[Documentation](https://docs.rs/spidev)
99

@@ -77,7 +77,7 @@ The following features are implemented and planned for the library:
7777

7878
## Minimum Supported Rust Version (MSRV)
7979

80-
This crate is guaranteed to compile on stable Rust 1.56.1 and up. It *might*
80+
This crate is guaranteed to compile on stable Rust 1.63.0 and up. It *might*
8181
compile with older versions but that may change in any new patch release.
8282

8383
## Cross Compiling

0 commit comments

Comments
 (0)