Skip to content

Commit 2767cbd

Browse files
committed
release embedded-hal-* v1.0.0-rc.2, embedded-io-{async,adapters} v0.6.1
1 parent 0c05a0a commit 2767cbd

File tree

12 files changed

+48
-15
lines changed

12 files changed

+48
-15
lines changed

embedded-hal-async/CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
No unreleased changes
11+
12+
## [v1.0.0-rc.2] - 2023-11-28
13+
14+
- Updated `embedded-hal` to version `1.0.0-rc.2`.
1015
- Minor document fixes.
1116
- Add #[inline] hints to most of `embedded-hal-async` functions.
1217
- delay: Rename `DelayUs` to `DelayNs`
1318
- delay: Add `DelayNs::delay_ns()`
1419
- delay: Add default impls of `delay_ms` and `delay_us` based on `delay_ns`.
1520
- spi: Rename `Operation::DelayUs` to `Operation::DelayNs`, with nanosecond precision.
21+
- Use `feature()` on nightly toolchains only. This adds support for 1.75 beta and stable.
1622

1723
## [v1.0.0-rc.1] - 2023-08-15
1824

@@ -76,7 +82,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7682
First release to crates.io
7783

7884

79-
[Unreleased]: https://github.com/rust-embedded/embedded-hal/compare/embedded-hal-async-v1.0.0-rc.1...HEAD
85+
[Unreleased]: https://github.com/rust-embedded/embedded-hal/compare/embedded-hal-async-v1.0.0-rc.2...HEAD
86+
[v1.0.0-rc.2]: https://github.com/rust-embedded/embedded-hal/compare/embedded-hal-async-v1.0.0-rc.1...embedded-hal-async-v1.0.0-rc.2
8087
[v1.0.0-rc.1]: https://github.com/rust-embedded/embedded-hal/compare/embedded-hal-async-v0.2.0-alpha.2...embedded-hal-async-v1.0.0-rc.1
8188
[v0.2.0-alpha.2]: https://github.com/rust-embedded/embedded-hal/compare/embedded-hal-async-v0.2.0-alpha.1...embedded-hal-async-v0.2.0-alpha.2
8289
[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

embedded-hal-async/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ 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 = "1.0.0-rc.1"
14+
version = "1.0.0-rc.2"
1515
rust-version = "1.65.0"
1616

1717
[features]
1818
defmt-03 = ["dep:defmt-03", "embedded-hal/defmt-03"]
1919

2020
[dependencies]
21-
embedded-hal = { version = "=1.0.0-rc.1", path = "../embedded-hal" }
21+
embedded-hal = { version = "=1.0.0-rc.2", path = "../embedded-hal" }
2222
defmt-03 = { package = "defmt", version = "0.3", optional = true }

embedded-hal-bus/CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
No unreleased changes
11+
12+
## [v1.0.0-rc.2] - 2023-11-28
13+
14+
- Updated `embedded-hal(-async)` to version `1.0.0-rc.2`.
1015
- Minor document fixes.
1116
- Add #[inline] hints to most of `embedded-hal-bus` functions.
17+
- Use `feature()` on nightly toolchains only. This adds async support for 1.75 beta and stable.
1218

1319
## [v0.1.0-rc.1] - 2023-08-15
1420

@@ -42,7 +48,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
4248

4349
First release to crates.io
4450

45-
[Unreleased]: https://github.com/rust-embedded/embedded-hal/compare/embedded-hal-bus-v0.1.0-rc.1...HEAD
51+
[Unreleased]: https://github.com/rust-embedded/embedded-hal/compare/embedded-hal-bus-v0.1.0-rc.2...HEAD
52+
[v0.1.0-rc.2]: https://github.com/rust-embedded/embedded-hal/compare/embedded-hal-bus-v0.1.0-rc.1...embedded-hal-bus-v0.1.0-rc.2
4653
[v0.1.0-rc.1]: https://github.com/rust-embedded/embedded-hal/compare/embedded-hal-bus-v0.1.0-alpha.3...embedded-hal-bus-v0.1.0-rc.1
4754
[v0.1.0-alpha.3]: https://github.com/rust-embedded/embedded-hal/compare/embedded-hal-bus-v0.1.0-alpha.2...embedded-hal-bus-v0.1.0-alpha.3
4855
[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

embedded-hal-bus/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@ license = "MIT OR Apache-2.0"
1212
name = "embedded-hal-bus"
1313
readme = "README.md"
1414
repository = "https://github.com/rust-embedded/embedded-hal"
15-
version = "0.1.0-rc.1"
15+
version = "0.1.0-rc.2"
1616

1717
[features]
1818
std = []
1919
async = ["dep:embedded-hal-async"]
2020
defmt-03 = ["dep:defmt-03", "embedded-hal/defmt-03", "embedded-hal-async?/defmt-03"]
2121

2222
[dependencies]
23-
embedded-hal = { version = "=1.0.0-rc.1", path = "../embedded-hal" }
24-
embedded-hal-async = { version = "=1.0.0-rc.1", path = "../embedded-hal-async", optional = true }
23+
embedded-hal = { version = "=1.0.0-rc.2", path = "../embedded-hal" }
24+
embedded-hal-async = { version = "=1.0.0-rc.2", path = "../embedded-hal-async", optional = true }
2525
critical-section = { version = "1.0" }
2626
defmt-03 = { package = "defmt", version = "0.3", optional = true }
2727

embedded-hal-nb/CHANGELOG.md

+8-1
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+
No unreleased changes
11+
12+
## [v1.0.0-rc.2] - 2023-11-28
13+
14+
- Updated `embedded-hal` to version `1.0.0-rc.2`.
1015
- Minor document fixes.
1116
- Add #[inline] hints to most of `embedded-hal-nb` functions.
1217

@@ -35,7 +40,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
3540

3641
First release to crates.io
3742

38-
[Unreleased]: https://github.com/rust-embedded/embedded-hal/compare/embedded-hal-nb-v1.0.0-alpha.3...HEAD
43+
[Unreleased]: https://github.com/rust-embedded/embedded-hal/compare/embedded-hal-nb-v1.0.0-rc.2...HEAD
44+
[v1.0.0-rc.2]: https://github.com/rust-embedded/embedded-hal/compare/embedded-hal-nb-v1.0.0-rc.1...embedded-hal-nb-v1.0.0-rc.2
45+
[v1.0.0-rc.1]: https://github.com/rust-embedded/embedded-hal/compare/embedded-hal-nb-v1.0.0-alpha.3...embedded-hal-nb-v1.0.0-rc.1
3946
[v1.0.0-alpha.3]: https://github.com/rust-embedded/embedded-hal/compare/embedded-hal-nb-v1.0.0-alpha.2...embedded-hal-nb-v1.0.0-alpha.3
4047
[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.2
4148
[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

embedded-hal-nb/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "embedded-hal-nb"
3-
version = "1.0.0-rc.1"
3+
version = "1.0.0-rc.2"
44
edition = "2021"
55
rust-version = "1.56"
66

@@ -13,7 +13,7 @@ readme = "README.md"
1313
repository = "https://github.com/rust-embedded/embedded-hal"
1414

1515
[dependencies]
16-
embedded-hal = { version = "=1.0.0-rc.1", path = "../embedded-hal" }
16+
embedded-hal = { version = "=1.0.0-rc.2", path = "../embedded-hal" }
1717
nb = "1"
1818

1919
[dev-dependencies]

embedded-hal/CHANGELOG.md

+6-1
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+
No unreleased changes
11+
12+
## [v1.0.0-rc.2] - 2023-11-28
13+
1014
- Minor document fixes.
1115
- Add #[inline] hints to most of `embedded-hal` functions.
1216
- pwm: rename `get_max_duty_cycle` to `max_duty_cycle`.
@@ -306,7 +310,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
306310

307311
Initial release
308312

309-
[Unreleased]: https://github.com/rust-embedded/embedded-hal/compare/v1.0.0-rc.1...HEAD
313+
[Unreleased]: https://github.com/rust-embedded/embedded-hal/compare/v1.0.0-rc.2...HEAD
314+
[v1.0.0-rc.2]: https://github.com/rust-embedded/embedded-hal/compare/v1.0.0-rc.1...v1.0.0-rc.2
310315
[v1.0.0-rc.1]: https://github.com/rust-embedded/embedded-hal/compare/v1.0.0-alpha.11...v1.0.0-rc.1
311316
[v1.0.0-alpha.11]: https://github.com/rust-embedded/embedded-hal/compare/v1.0.0-alpha.10...v1.0.0-alpha.11
312317
[v1.0.0-alpha.10]: https://github.com/rust-embedded/embedded-hal/compare/v1.0.0-alpha.9...v1.0.0-alpha.10

embedded-hal/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ license = "MIT OR Apache-2.0"
1414
name = "embedded-hal"
1515
readme = "README.md"
1616
repository = "https://github.com/rust-embedded/embedded-hal"
17-
version = "1.0.0-rc.1"
17+
version = "1.0.0-rc.2"
1818

1919
[features]
2020
defmt-03 = ["dep:defmt-03"]

embedded-io-adapters/CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
Add unreleased changes here
1111

12+
## 0.6.1 - 2023-11-28
13+
1214
- Handle reading from `FromTokio` with empty buffer, ensuring `Ok(0)` is always returned.
15+
- Use `feature()` on nightly toolchains only. This adds async support for 1.75 beta and stable.
1316

1417
## 0.6.0 - 2023-10-02
1518

embedded-io-adapters/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "embedded-io-adapters"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
edition = "2021"
55
rust-version = "1.60"
66
description = "Adapters between the `embedded-io` traits and other I/O traits"
@@ -19,7 +19,7 @@ futures-03 = ["std", "dep:futures", "dep:embedded-io-async", "embedded-io-async?
1919

2020
[dependencies]
2121
embedded-io = { version = "0.6", path = "../embedded-io" }
22-
embedded-io-async = { version = "0.6", path = "../embedded-io-async", optional = true }
22+
embedded-io-async = { version = "0.6.1", path = "../embedded-io-async", optional = true }
2323

2424
futures = { version = "0.3.21", features = ["std"], default-features = false, optional = true }
2525
tokio = { version = "1", features = ["io-util"], default-features = false, optional = true }

embedded-io-async/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
Add unreleased changes here
1111

12+
## 0.6.1 - 2023-11-28
13+
14+
- Use `feature()` on nightly toolchains only. This adds support for 1.75 beta and stable.
15+
1216
## 0.6.0 - 2023-10-02
1317

1418
- Prohibit `Write::write` implementations returning `Ok(0)` unless there is no

embedded-io-async/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "embedded-io-async"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
edition = "2021"
55
description = "Async embedded IO traits"
66
repository = "https://github.com/rust-embedded/embedded-hal"

0 commit comments

Comments
 (0)