File tree Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Not yet released
4
4
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 )
6
10
7
11
- 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 ` .
9
13
10
14
## 0.5.0 / 2021-09-21
11
15
@@ -73,4 +77,3 @@ following:
73
77
- Support for performing single full-duplex SPI transfers
74
78
- Support for performing multiple chained SPI transfers
75
79
- Support for configuring settings for each SPI transfer individually
76
-
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
3
3
name = " spidev"
4
- version = " 0.5.0 " # remember to update html_root_url
4
+ version = " 0.5.1 "
5
5
authors = [" Paul Osborne <osbpau@gmail.com>" ]
6
6
edition = " 2018"
7
7
license = " MIT/Apache-2.0"
@@ -18,4 +18,4 @@ half-duplex SPI access, and full-duplex SPI access.
18
18
[dependencies ]
19
19
libc = " 0.2"
20
20
bitflags = " 1.3"
21
- nix = " >= 0.22, < 0.24 "
21
+ nix = " 0.23 "
Original file line number Diff line number Diff line change 65
65
//! }
66
66
//! ```
67
67
68
- #![ doc( html_root_url = "https://docs.rs/spidev/0.5.0" ) ]
69
-
70
68
pub mod spidevioctl;
71
69
pub use crate :: spidevioctl:: SpidevTransfer ;
72
70
You can’t perform that action at this time.
0 commit comments