Skip to content

Commit ec55f00

Browse files
bors[bot]eldruin
andauthored
Merge #37
37: Release 0.5.1 r=ryankurte a=eldruin Fixes #35 Co-authored-by: Diego Barrios Romero <[email protected]>
2 parents ae7c9d6 + 260e94f commit ec55f00

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,14 @@
22

33
## Not yet released
44

5-
[Full Changelog](https://github.com/rust-embedded/rust-spidev/compare/0.5.0...HEAD)
5+
[Full Changelog](https://github.com/rust-embedded/rust-spidev/compare/0.5.1...HEAD)
6+
7+
## 0.5.1 / 2021-11-22
8+
9+
[Full Changelog](https://github.com/rust-embedded/rust-spidev/compare/0.5.0...0.5.1)
610

711
- Implement `AsRawFd` for `Spidev` to allow access to the underlying file descriptor.
8-
- Updated nix to allow both version `0.22` or `0.23`.
12+
- Updated nix to version `0.23`.
913

1014
## 0.5.0 / 2021-09-21
1115

@@ -73,4 +77,3 @@ following:
7377
- Support for performing single full-duplex SPI transfers
7478
- Support for performing multiple chained SPI transfers
7579
- Support for configuring settings for each SPI transfer individually
76-

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "spidev"
4-
version = "0.5.0" # remember to update html_root_url
4+
version = "0.5.1"
55
authors = ["Paul Osborne <[email protected]>"]
66
edition = "2018"
77
license = "MIT/Apache-2.0"
@@ -18,4 +18,4 @@ half-duplex SPI access, and full-duplex SPI access.
1818
[dependencies]
1919
libc = "0.2"
2020
bitflags = "1.3"
21-
nix = ">= 0.22, < 0.24"
21+
nix = "0.23"

src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,6 @@
6565
//! }
6666
//! ```
6767
68-
#![doc(html_root_url = "https://docs.rs/spidev/0.5.0")]
69-
7068
pub mod spidevioctl;
7169
pub use crate::spidevioctl::SpidevTransfer;
7270

0 commit comments

Comments
 (0)