File tree 8 files changed +293
-71
lines changed
8 files changed +293
-71
lines changed Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ status = [
5
5
" ci-linux (stable, x86_64-unknown-linux-gnu)" ,
6
6
" ci-linux (stable, thumbv6m-none-eabi)" ,
7
7
" ci-linux (stable, thumbv7m-none-eabi)" ,
8
- " ci-linux (1.46 .0, x86_64-unknown-linux-gnu)" ,
8
+ " ci-linux (1.54 .0, x86_64-unknown-linux-gnu)" ,
9
9
" ci-linux-test (stable)" ,
10
- " ci-linux-test (1.46 .0, x86_64-unknown-linux-gnu)" ,
10
+ " ci-linux-test (1.54 .0, x86_64-unknown-linux-gnu)" ,
11
11
" fmt" ,
12
12
]
Original file line number Diff line number Diff line change 21
21
22
22
include :
23
23
# Test MSRV
24
- - rust : 1.46 .0
24
+ - rust : 1.54 .0
25
25
TARGET : x86_64-unknown-linux-gnu
26
26
27
27
# Test nightly but don't fail
Original file line number Diff line number Diff line change 16
16
rust : [stable]
17
17
18
18
include :
19
- - rust : 1.46 .0
19
+ - rust : 1.54 .0
20
20
TARGET : x86_64-unknown-linux-gnu
21
21
22
22
# Test nightly but don't fail
Original file line number Diff line number Diff line change @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
10
+ ### Changed
11
+ - The Minimum Supported Rust Version (MSRV) is now 1.54.0
12
+ - ` spi ` : unify all traits into ` SpiReadBus ` , ` SpiWriteBus ` and ` SpiBus ` (read-write).
13
+ - ` spi ` : Add ` SpiDevice ` trait to represent a single device in a (possibly shared) bus, with managed chip-select (CS) pin.
14
+
10
15
## [ v1.0.0-alpha.7] - 2022-02-09
11
16
12
17
** * This is (also) an alpha release with breaking changes (sorry) ** *
Original file line number Diff line number Diff line change 1
1
[ ![ crates.io] ( https://img.shields.io/crates/d/embedded-hal.svg )] ( https://crates.io/crates/embedded-hal )
2
2
[ ![ crates.io] ( https://img.shields.io/crates/v/embedded-hal.svg )] ( https://crates.io/crates/embedded-hal )
3
3
[ ![ Documentation] ( https://docs.rs/embedded-hal/badge.svg )] ( https://docs.rs/embedded-hal )
4
- ![ Minimum Supported Rust Version] ( https://img.shields.io/badge/rustc-1.46 +-blue.svg )
4
+ ![ Minimum Supported Rust Version] ( https://img.shields.io/badge/rustc-1.54 +-blue.svg )
5
5
6
6
# ` embedded-hal `
7
7
@@ -98,7 +98,7 @@ Because of this we only aim to support the latest `-alpha`.
98
98
99
99
## Minimum Supported Rust Version (MSRV)
100
100
101
- This crate is guaranteed to compile on stable Rust 1.46 and up. It * might*
101
+ This crate is guaranteed to compile on stable Rust 1.54 and up. It * might*
102
102
compile with older versions but that may change in any new patch release.
103
103
104
104
## License
You can’t perform that action at this time.
0 commit comments