Skip to content

Commit bab0045

Browse files
bors[bot]eldruin
andauthored
Merge #375
375: Prepare 1.0.0-alpha.8 release r=ryankurte a=eldruin Even though the I2C rework similar to SPI is not available, it would be good to start gathering some experiences. This release is a requirement for an initial alpha release of `embedded-hal-async`. Co-authored-by: Diego Barrios Romero <[email protected]>
2 parents 962efd7 + 0a3a858 commit bab0045

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
## [v1.0.0-alpha.8] - 2022-04-15
11+
12+
*** This is (also) an alpha release with breaking changes (sorry) ***
13+
1014
### Changed
1115
- The Minimum Supported Rust Version (MSRV) is now 1.54.0
1216
- `spi`: unify all traits into `SpiReadBus`, `SpiWriteBus` and `SpiBus` (read-write).

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ license = "MIT OR Apache-2.0"
1313
name = "embedded-hal"
1414
readme = "README.md"
1515
repository = "https://github.com/rust-embedded/embedded-hal"
16-
version = "1.0.0-alpha.7"
16+
version = "1.0.0-alpha.8"
1717

1818
[dependencies]
1919
nb = "1"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ release alpha versions like `1.0.0-alpha.1` and `1.0.0-alpha.2`.
4141
Alpha releases are **not guaranteed** to be compatible with each other.
4242
They are provided as early previews for community testing and preparation for the final release.
4343
If you use an alpha release, we recommend you choose an exact version specification in your
44-
`Cargo.toml` like: `embedded-hal = "=1.0.0-alpha.2"`
44+
`Cargo.toml` like: `embedded-hal = "=1.0.0-alpha.8"`
4545

4646
See [this guide](docs/version-policy.md) for a way to implement both an `embedded-hal` `0.2.x`
4747
version and an `-alpha` version side by side in a HAL.

embedded-hal-async/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ repository = "https://github.com/rust-embedded/embedded-hal"
1414
version = "0.0.1"
1515

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

0 commit comments

Comments
 (0)