Skip to content

Commit ebf1c12

Browse files
bors[bot]eldruin
andauthored
Merge #386
386: Prepare embedded-hal-async 0.1.0-alpha.1 release r=ryankurte a=eldruin Co-authored-by: Diego Barrios Romero <[email protected]>
2 parents 748f6f0 + 4b5b7d0 commit ebf1c12

File tree

4 files changed

+14
-7
lines changed

4 files changed

+14
-7
lines changed

embedded-hal-async/CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff 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

1220
First 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

embedded-hal-async/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0"
1111
name = "embedded-hal-async"
1212
readme = "README.md"
1313
repository = "https://github.com/rust-embedded/embedded-hal"
14-
version = "0.1.0-alpha.0"
14+
version = "0.1.0-alpha.1"
1515

1616
[dependencies]
1717
embedded-hal = { version = "=1.0.0-alpha.8", path = ".." }

embedded-hal-async/LICENSE-MIT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2021 The Rust embedded HAL team and contributors.
1+
Copyright (c) 2021-2022 The Rust embedded HAL team and contributors.
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy of
44
this software and associated documentation files (the "Software"), to deal in

embedded-hal-async/README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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
![Minimum Supported Rust Version](https://img.shields.io/badge/rustc-1.46+-blue.svg)
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)

0 commit comments

Comments
 (0)