Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates for 0.6.1 release #47

Merged
merged 2 commits into from
Mar 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -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
Expand Down
Loading