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/).
77
88## [ Unreleased]
99
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+
1018## [ v0.1.0-alpha.0] - 2022-04-17
1119
1220First release to crates.io
1321
1422
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
1625[ 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"
1111name = " embedded-hal-async"
1212readme = " README.md"
1313repository = " https://github.com/rust-embedded/embedded-hal"
14- version = " 0.1.0-alpha.0 "
14+ version = " 0.1.0-alpha.1 "
1515
1616[dependencies ]
1717embedded-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.
22
33Permission is hereby granted, free of charge, to any person obtaining a copy of
44this software and associated documentation files (the "Software"), to deal in
Original file line number Diff line number Diff line change 1- <!--
21[ ![ crates.io] ( https://img.shields.io/crates/d/embedded-hal-async.svg )] ( https://crates.io/crates/embedded-hal-async )
32[ ![ crates.io] ( https://img.shields.io/crates/v/embedded-hal-async.svg )] ( https://crates.io/crates/embedded-hal-async )
43[ ![ Documentation] ( https://docs.rs/embedded-hal-async/badge.svg )] ( https://docs.rs/embedded-hal-async )
4+ <!--
55
66-->
77
@@ -14,13 +14,11 @@ The purpose of this crate is to iterate over these trait versions before integra
1414
1515** 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.
1616
17- <!-- This project is developed and maintained by the [HAL team][team]. -->
17+ This project is developed and maintained by the [ HAL team] [ team ] .
1818
19- <!--
2019## [ API reference]
2120
2221[ API reference ] : https://docs.rs/embedded-hal-async
23- -->
2422
2523<!--
2624## Minimum Supported Rust Version (MSRV)
You can’t perform that action at this time.
0 commit comments