Skip to content

Commit 59c4771

Browse files
committed
Release embedded-io 0.7
io-async and io-adapters are updated to keep the path and version in sync. Contributes-To: #566
1 parent de0d966 commit 59c4771

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

embedded-io-adapters/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ tokio-1 = ["std", "dep:tokio", "dep:embedded-io-async", "embedded-io-async?/std"
1818
futures-03 = ["std", "dep:futures", "dep:embedded-io-async", "embedded-io-async?/std"]
1919

2020
[dependencies]
21-
embedded-io = { version = "0.6", path = "../embedded-io" }
21+
embedded-io = { version = "0.7", path = "../embedded-io" }
2222
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 }

embedded-io-async/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ alloc = ["embedded-io/alloc"]
1818
defmt = ["dep:defmt", "embedded-io/defmt"]
1919

2020
[dependencies]
21-
embedded-io = { version = "0.6.1", path = "../embedded-io" }
21+
embedded-io = { version = "0.7.0", path = "../embedded-io" }
2222
defmt = { package = "defmt", version = "1", optional = true }
2323

2424
[package.metadata.docs.rs]

embedded-io/CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## Unreleased
8+
## 0.7.0 - unreleased
99

10-
- Added `core::error::Error` implementations for every custom `impl Error`
11-
- Migrated `std` feature-gated `std::error::Error` implementations to `core::error::Error`
10+
- Added trait dependency on `core::error::Error` to this crate's `Error` trait
11+
- Implemented the trait on all provided implementations
12+
- Migrated `std` feature-gated `std::error::Error` implementations to `core::error::Error`
13+
- Updated `defmt` dependency to 1.0; feature renamed from `defmt_03` to `defmt`
1214
- Increased MSRV to 1.81 due to `core::error::Error`
1315
- Implemented `ReadReady` for `&[u8]` and `WriteReady` for `&mut [u8]`
1416

embedded-io/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "embedded-io"
3-
version = "0.6.1"
3+
version = "0.7.0"
44
edition = "2021"
55
rust-version = "1.81"
66
description = "Embedded IO traits"

0 commit comments

Comments
 (0)