Skip to content

Commit

Permalink
Merge #386
Browse files Browse the repository at this point in the history
386: Prepare embedded-hal-async 0.1.0-alpha.1 release r=ryankurte a=eldruin



Co-authored-by: Diego Barrios Romero <[email protected]>
  • Loading branch information
bors[bot] and eldruin authored May 25, 2022
2 parents 748f6f0 + 4b5b7d0 commit ebf1c12
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
11 changes: 10 additions & 1 deletion embedded-hal-async/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [v0.1.0-alpha.1] - 2022-05-24

### Changed

- spi: device helper methods (`read`, `write`, `transfer`...) are now default methods in `SpiDevice` instead of an `SpiDeviceExt` extension trait.
- spi: the `SpiDevice::transaction` closure now gets a raw pointer to the `SpiBus` to work around Rust borrow checker limitations.


## [v0.1.0-alpha.0] - 2022-04-17

First release to crates.io


[Unreleased]: https://github.com/rust-embedded/embedded-hal/compare/embedded-hal-async-v0.1.0-alpha.0...HEAD
[Unreleased]: https://github.com/rust-embedded/embedded-hal/compare/embedded-hal-async-v0.1.0-alpha.1...HEAD
[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
[v0.1.0-alpha.0]: https://github.com/rust-embedded/embedded-hal/tree/embedded-hal-async-v0.1.0-alpha.0
2 changes: 1 addition & 1 deletion embedded-hal-async/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0"
name = "embedded-hal-async"
readme = "README.md"
repository = "https://github.com/rust-embedded/embedded-hal"
version = "0.1.0-alpha.0"
version = "0.1.0-alpha.1"

[dependencies]
embedded-hal = { version = "=1.0.0-alpha.8", path = ".." }
2 changes: 1 addition & 1 deletion embedded-hal-async/LICENSE-MIT
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2021 The Rust embedded HAL team and contributors.
Copyright (c) 2021-2022 The Rust embedded HAL team and contributors.

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
Expand Down
6 changes: 2 additions & 4 deletions embedded-hal-async/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!--
[![crates.io](https://img.shields.io/crates/d/embedded-hal-async.svg)](https://crates.io/crates/embedded-hal-async)
[![crates.io](https://img.shields.io/crates/v/embedded-hal-async.svg)](https://crates.io/crates/embedded-hal-async)
[![Documentation](https://docs.rs/embedded-hal-async/badge.svg)](https://docs.rs/embedded-hal-async)
<!--
![Minimum Supported Rust Version](https://img.shields.io/badge/rustc-1.46+-blue.svg)
-->

Expand All @@ -14,13 +14,11 @@ The purpose of this crate is to iterate over these trait versions before integra

**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.

<!-- This project is developed and maintained by the [HAL team][team]. -->
This project is developed and maintained by the [HAL team][team].

<!--
## [API reference]

[API reference]: https://docs.rs/embedded-hal-async
-->

<!--
## Minimum Supported Rust Version (MSRV)
Expand Down

0 comments on commit ebf1c12

Please sign in to comment.