Skip to content

Commit 5626ab3

Browse files
committed
Release embedded-hal{,-async,-nb} v1.0.0-rc.1, embedded-hal-bus v0.1.0-rc.1
1 parent 6cfdb7a commit 5626ab3

File tree

5 files changed

+15
-11
lines changed

5 files changed

+15
-11
lines changed

embedded-hal-async/Cargo.toml

Lines changed: 2 additions & 2 deletions
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 = "0.2.0-alpha.2"
14+
version = "1.0.0-rc.1"
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-alpha.11", path = "../embedded-hal" }
21+
embedded-hal = { version = "=1.0.0-rc.1", path = "../embedded-hal" }
2222
defmt-03 = { package = "defmt", version = "0.3", optional = true }

embedded-hal-async/README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,14 @@ or a console to operate either on hardware serial ports or on virtual ones like
2020
## Minimum Supported Rust Version (MSRV)
2121

2222
This crate requires Rust nightly newer than `nightly-2022-11-22`, due to requiring support for
23-
`async fn` in traits (AFIT), which is not stable yet.
23+
`async fn` in traits (AFIT), which is not stable yet.
2424

2525
Keep in mind Rust nightlies can make backwards-incompatible changes to unstable features
26-
at any time.
26+
at any time. If this happens, we might do changes that increase the minimum required nightly
27+
version in any patch release.
28+
29+
When AFIT becomes stable, MSRV will be bumped to the Rust version that stabilizes it, after which
30+
point the [standard MSRV bump policy](../docs/msrv.md) will apply.
2731

2832
## License
2933

embedded-hal-bus/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ 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.3"
14+
version = "0.1.0-rc.1"
1515

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

2121
[dependencies]
22-
embedded-hal = { version = "=1.0.0-alpha.11", path = "../embedded-hal" }
23-
embedded-hal-async = { version = "=0.2.0-alpha.2", path = "../embedded-hal-async", optional = true }
22+
embedded-hal = { version = "=1.0.0-rc.1", path = "../embedded-hal" }
23+
embedded-hal-async = { version = "=1.0.0-rc.1", path = "../embedded-hal-async", optional = true }
2424
critical-section = { version = "1.0" }
2525
defmt-03 = { package = "defmt", version = "0.3", optional = true }
2626

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.3"
3+
version = "1.0.0-rc.1"
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.11", path = "../embedded-hal" }
15+
embedded-hal = { version = "=1.0.0-rc.1", path = "../embedded-hal" }
1616
nb = "1"
1717

1818
[dev-dependencies]

embedded-hal/Cargo.toml

Lines changed: 2 additions & 2 deletions
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.11"
16+
version = "1.0.0-rc.1"
1717

1818
[dependencies]
19-
defmt-03 = { package = "defmt", version = "0.3", optional = true }
19+
defmt-03 = { package = "defmt", version = "0.3", optional = true }

0 commit comments

Comments
 (0)