File tree Expand file tree Collapse file tree 4 files changed +14
-7
lines changed Expand file tree Collapse file tree 4 files changed +14
-7
lines changed Original file line number Diff line number Diff line change @@ -7,10 +7,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ v0.1.0-alpha.1] - 2022-05-24
11
+
12
+ ### Changed
13
+
14
+ - spi: device helper methods (` read ` , ` write ` , ` transfer ` ...) are now default methods in ` SpiDevice ` instead of an ` SpiDeviceExt ` extension trait.
15
+ - spi: the ` SpiDevice::transaction ` closure now gets a raw pointer to the ` SpiBus ` to work around Rust borrow checker limitations.
16
+
17
+
10
18
## [ v0.1.0-alpha.0] - 2022-04-17
11
19
12
20
First release to crates.io
13
21
14
22
15
- [ Unreleased ] : https://github.com/rust-embedded/embedded-hal/compare/embedded-hal-async-v0.1.0-alpha.0...HEAD
23
+ [ Unreleased ] : https://github.com/rust-embedded/embedded-hal/compare/embedded-hal-async-v0.1.0-alpha.1...HEAD
24
+ [ v0.1.0-alpha.1 ] : https://github.com/rust-embedded/embedded-hal/compare/embedded-hal-async-v0.1.0-alpha.0...embedded-hal-async-v0.1.0-alpha.1
16
25
[ v0.1.0-alpha.0 ] : https://github.com/rust-embedded/embedded-hal/tree/embedded-hal-async-v0.1.0-alpha.0
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0"
11
11
name = " embedded-hal-async"
12
12
readme = " README.md"
13
13
repository = " https://github.com/rust-embedded/embedded-hal"
14
- version = " 0.1.0-alpha.0 "
14
+ version = " 0.1.0-alpha.1 "
15
15
16
16
[dependencies ]
17
17
embedded-hal = { version = " =1.0.0-alpha.8" , path = " .." }
Original file line number Diff line number Diff line change 1
- Copyright (c) 2021 The Rust embedded HAL team and contributors.
1
+ Copyright (c) 2021-2022 The Rust embedded HAL team and contributors.
2
2
3
3
Permission is hereby granted, free of charge, to any person obtaining a copy of
4
4
this software and associated documentation files (the "Software"), to deal in
Original file line number Diff line number Diff line change 1
- <!--
2
1
[ ![ crates.io] ( https://img.shields.io/crates/d/embedded-hal-async.svg )] ( https://crates.io/crates/embedded-hal-async )
3
2
[ ![ crates.io] ( https://img.shields.io/crates/v/embedded-hal-async.svg )] ( https://crates.io/crates/embedded-hal-async )
4
3
[ ![ Documentation] ( https://docs.rs/embedded-hal-async/badge.svg )] ( https://docs.rs/embedded-hal-async )
4
+ <!--
5
5

6
6
-->
7
7
@@ -14,13 +14,11 @@ The purpose of this crate is to iterate over these trait versions before integra
14
14
15
15
** NOTE** These traits are still experimental. At least one breaking change to this crate is expected in the future (changing from GATs to ` async fn ` ), but there might be more.
16
16
17
- <!-- This project is developed and maintained by the [HAL team][team]. -->
17
+ This project is developed and maintained by the [ HAL team] [ team ] .
18
18
19
- <!--
20
19
## [ API reference]
21
20
22
21
[ API reference ] : https://docs.rs/embedded-hal-async
23
- -->
24
22
25
23
<!--
26
24
## Minimum Supported Rust Version (MSRV)
You can’t perform that action at this time.
0 commit comments