Skip to content

Commit 173750c

Browse files
bors[bot]eldruin
andauthored
Merge #355
355: Prepare 1.0.0-alpha.7 release r=ryankurte a=eldruin #354 should be merged/rejected beforehand Co-authored-by: Diego Barrios Romero <[email protected]>
2 parents 807172a + 8edf25a commit 173750c

File tree

3 files changed

+10
-12
lines changed

3 files changed

+10
-12
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [v1.0.0-alpha.7] - 2022-02-09
11+
12+
*** This is (also) an alpha release with breaking changes (sorry) ***
13+
1014
### Added
11-
- `Error` traits for Can, SPI, I2C and Serial are implemented for Infallible
15+
- `Error` traits for CAN, SPI, I2C and Serial are implemented for `Infallible`.
1216

1317
### Fixed
1418
- Fixed blanket impl of `DelayUs` not covering the `delay_ms` method.
15-
### Changed
16-
- `spi`: traits now enforce all impls on the same struct (eg `Transfer` and `Write`) have the same `Error` type.
1719

1820
### Changed
21+
- `spi`: traits now enforce all impls on the same struct (eg `Transfer` and `Write`) have the same `Error` type.
1922
- `digital`: traits now enforce all impls on the same struct have the same `Error` type.
20-
21-
### Changed
2223
- `serial`: traits now enforce all impls on the same struct have the same `Error` type.
23-
24-
### Changed
2524
- `i2c`: traits now enforce all impls on the same struct have the same `Error` type.
2625
- `i2c`: unify all traits into a single `I2c` trait.
2726

@@ -100,8 +99,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
10099
- `Transactional` SPI interface for executing groups of SPI transactions.
101100
- `Transactional` I2C interface for executing groups of I2C transactions.
102101

103-
### Changed
104-
105102

106103
## [v1.0.0-alpha.2] - 2020-10-16
107104

@@ -228,7 +225,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
228225

229226
Initial release
230227

231-
[Unreleased]: https://github.com/rust-embedded/embedded-hal/compare/v1.0.0-alpha.6...HEAD
228+
[Unreleased]: https://github.com/rust-embedded/embedded-hal/compare/v1.0.0-alpha.7...HEAD
229+
[v1.0.0-alpha.7]: https://github.com/rust-embedded/embedded-hal/compare/v1.0.0-alpha.6...v1.0.0-alpha.7
232230
[v1.0.0-alpha.6]: https://github.com/rust-embedded/embedded-hal/compare/v1.0.0-alpha.5...v1.0.0-alpha.6
233231
[v1.0.0-alpha.5]: https://github.com/rust-embedded/embedded-hal/compare/v1.0.0-alpha.4...v1.0.0-alpha.5
234232
[v1.0.0-alpha.4]: https://github.com/rust-embedded/embedded-hal/compare/v1.0.0-alpha.3...v1.0.0-alpha.4

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.6"
16+
version = "1.0.0-alpha.7"
1717

1818
[dependencies]
1919
nb = "1"

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.6", path = ".." }
17+
embedded-hal = { version = "=1.0.0-alpha.7", path = ".." }

0 commit comments

Comments
 (0)