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

Release 0.6.1 #46

Closed
wants to merge 3 commits into from
Closed
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
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

## Not yet released

[Full Changelog](https://github.com/rust-embedded/rust-spidev/compare/0.6.0...HEAD)
[Full Changelog](https://github.com/rust-embedded/rust-spidev/compare/0.6.1...HEAD)

## 0.6.1 / 2025-03-04

[Full Changelog](https://github.com/rust-embedded/rust-spidev/compare/0.6.0...0.6.1)

- Added support for querying the configuration of a SPI device.
- Minimum Supported Rust Version is now 1.63.0
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "spidev"
version = "0.6.0"
version = "0.6.1"
authors = [
"Paul Osborne <[email protected]>",
"The Embedded Linux Team <[email protected]>"
Expand All @@ -22,4 +22,4 @@ rust-version = "1.63"
[dependencies]
libc = "0.2"
bitflags = "2.3"
nix = "0.26.2"
nix = "0.26.4"
2 changes: 1 addition & 1 deletion LICENSE-MIT
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
The MIT License (MIT)

Copyright (c) 2015 Paul Osborne
Copyright (c) 2021-2023 The Rust Embedded Linux Team and contributors.
Copyright (c) 2021-2025 The Rust Embedded Linux Team and contributors.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ The following features are implemented and planned for the library:
- [x] Implement the Write trait
- [x] Support for full-duplex transfers
- [x] Support for configuring spidev device
- [ ] Support for querying spidev configuration state
- [x] Support for querying spidev configuration state

## Minimum Supported Rust Version (MSRV)

Expand Down