Skip to content

Commit 3a7c3ca

Browse files
bors[bot]Dirbaio
andauthored
Merge #449
449: Release e-h v1.0.0-alpha.10, e-h-async v0.2.0-alpha.1, e-h-bus v0.1.0… r=eldruin a=Dirbaio …-alpha.2, e-h-nb v1.0.0-alpha.2. lots of crates, whew 😅 Co-authored-by: Dario Nieuwenhuis <[email protected]>
2 parents 0c98b79 + 76c66f3 commit 3a7c3ca

File tree

9 files changed

+32
-12
lines changed

9 files changed

+32
-12
lines changed

embedded-hal-async/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [v0.2.0-alpha.1] - 2023-04-04
11+
1012
### Added
1113
- Added a `serial::Write` trait.
1214

1315
### Changed
16+
- Updated `embedded-hal` to version `1.0.0-alpha.10`.
1417
- delay: make infallible.
1518
- i2c: remove `_iter()` methods.
1619
- i2c: add default implementations for all methods based on `transaction()`.
@@ -46,7 +49,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
4649
First release to crates.io
4750

4851

49-
[Unreleased]: https://github.com/rust-embedded/embedded-hal/compare/embedded-hal-async-v0.2.0-alpha.0...HEAD
52+
[Unreleased]: https://github.com/rust-embedded/embedded-hal/compare/embedded-hal-async-v0.2.0-alpha.1...HEAD
53+
[v0.2.0-alpha.1]: https://github.com/rust-embedded/embedded-hal/compare/embedded-hal-async-v0.2.0-alpha.0...embedded-hal-async-v0.2.0-alpha.1
5054
[v0.2.0-alpha.0]: https://github.com/rust-embedded/embedded-hal/compare/embedded-hal-async-v0.1.0-alpha.3...embedded-hal-async-v0.2.0-alpha.0
5155
[v0.1.0-alpha.3]: https://github.com/rust-embedded/embedded-hal/compare/embedded-hal-async-v0.1.0-alpha.2...embedded-hal-async-v0.1.0-alpha.3
5256
[v0.1.0-alpha.2]: https://github.com/rust-embedded/embedded-hal/compare/embedded-hal-async-v0.1.0-alpha.1...embedded-hal-async-v0.1.0-alpha.2

embedded-hal-async/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ 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.2.0-alpha.0"
14+
version = "0.2.0-alpha.1"
1515
rust-version = "1.65.0"
1616

1717
[dependencies]
18-
embedded-hal = { version = "=1.0.0-alpha.9", path = "../embedded-hal" }
18+
embedded-hal = { version = "=1.0.0-alpha.10", path = "../embedded-hal" }

embedded-hal-bus/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [v0.1.0-alpha.2] - 2023-04-04
11+
12+
### Changed
13+
- Updated `embedded-hal` to version `1.0.0-alpha.10`.
14+
1015
### Added
1116
- i2c: add bus sharing implementations.
1217
- spi: add bus sharing implementations.
@@ -20,6 +25,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
2025

2126
First release to crates.io
2227

23-
[Unreleased]: https://github.com/rust-embedded/embedded-hal/compare/embedded-hal-bus-v0.1.0-alpha.1...HEAD
28+
[Unreleased]: https://github.com/rust-embedded/embedded-hal/compare/embedded-hal-bus-v0.1.0-alpha.2...HEAD
29+
[v0.1.0-alpha.2]: https://github.com/rust-embedded/embedded-hal/compare/embedded-hal-bus-v0.1.0-alpha.1...embedded-hal-bus-v0.1.0-alpha.2
2430
[v0.1.0-alpha.1]: https://github.com/rust-embedded/embedded-hal/compare/embedded-hal-bus-v0.1.0-alpha.0...embedded-hal-bus-v0.1.0-alpha.1
2531
[v0.1.0-alpha.0]: https://github.com/rust-embedded/embedded-hal/tree/embedded-hal-bus-v0.1.0-alpha.0

embedded-hal-bus/Cargo.toml

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

1616
[features]
1717
std = []
1818

1919
[dependencies]
20-
embedded-hal = { version = "=1.0.0-alpha.9", path = "../embedded-hal" }
20+
embedded-hal = { version = "=1.0.0-alpha.10", path = "../embedded-hal" }
2121
critical-section = { version = "1.0" }

embedded-hal-bus/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This project is developed and maintained by the [HAL team](https://github.com/ru
1515

1616
To support bus sharing, `embedded-hal` provides the `SpiBus` and `SpiDevice` traits. `SpiBus` represents an entire bus,
1717
while `SpiDevice` represents a device on that bus. For further details on these traits, please consult the
18-
[`embedded-hal` documentation](https://docs.rs/embedded-hal/1.0.0-alpha.9/embedded_hal/spi/index.html).
18+
[`embedded-hal` documentation](https://docs.rs/embedded-hal/1.0.0-alpha.10/embedded_hal/spi/index.html).
1919

2020
`embedded-hal` trait implementations for microcontrollers should implement the `SpiBus` trait.
2121
However, device drivers should use the `SpiDevice` traits, _not the `SpiBus` traits_ if at all possible

embedded-hal-nb/CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
99

1010
...
1111

12+
## [v1.0.0-alpha.2] - 2023-04-04
13+
14+
### Changed
15+
- Updated `embedded-hal` to version `1.0.0-alpha.10`.
16+
1217
## [v1.0.0-alpha.1] - 2022-09-28
1318

1419
### Changed
@@ -18,6 +23,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1823

1924
First release to crates.io
2025

21-
[Unreleased]: https://github.com/rust-embedded/embedded-hal/compare/embedded-hal-nb-v1.0.0-alpha.1...HEAD
26+
[Unreleased]: https://github.com/rust-embedded/embedded-hal/compare/embedded-hal-nb-v1.0.0-alpha.2...HEAD
27+
[v1.0.0-alpha.2]: https://github.com/rust-embedded/embedded-hal/compare/embedded-hal-nb-v1.0.0-alpha.1...embedded-hal-nb-v1.0.0-alpha.2which
2228
[v1.0.0-alpha.1]: https://github.com/rust-embedded/embedded-hal/compare/embedded-hal-nb-v1.0.0-alpha.0...embedded-hal-nb-v1.0.0-alpha.1
2329
[v1.0.0-alpha.0]: https://github.com/rust-embedded/embedded-hal/tree/embedded-hal-nb-v1.0.0-alpha.0

embedded-hal-nb/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "embedded-hal-nb"
3-
version = "1.0.0-alpha.1"
3+
version = "1.0.0-alpha.2"
44
edition = "2021"
55

66
categories = ["embedded", "hardware-support", "no-std"]
@@ -12,7 +12,7 @@ readme = "README.md"
1212
repository = "https://github.com/rust-embedded/embedded-hal"
1313

1414
[dependencies]
15-
embedded-hal = { version = "=1.0.0-alpha.9", path = "../embedded-hal" }
15+
embedded-hal = { version = "=1.0.0-alpha.10", path = "../embedded-hal" }
1616
nb = "1"
1717

1818
[dev-dependencies]

embedded-hal/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.10] - 2023-04-04
11+
12+
*** This is (also) an alpha release with breaking changes (sorry) ***
13+
1014
### Added
1115
- Added `pwm::SetDutyCycle` trait.
1216

embedded-hal/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
authors = [
33
"The Embedded HAL Team <[email protected]>",
44
"Jorge Aparicio <[email protected]>",
5-
"Jonathan 'theJPster' Pallant <[email protected]>"
5+
"Jonathan 'theJPster' Pallant <[email protected]>",
66
]
77
categories = ["asynchronous", "embedded", "hardware-support", "no-std"]
88
description = " A Hardware Abstraction Layer (HAL) for embedded systems "
@@ -13,4 +13,4 @@ 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.9"
16+
version = "1.0.0-alpha.10"

0 commit comments

Comments
 (0)