Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion embedded-io-adapters/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ tokio-1 = ["std", "dep:tokio", "dep:embedded-io-async", "embedded-io-async?/std"
futures-03 = ["std", "dep:futures", "dep:embedded-io-async", "embedded-io-async?/std"]

[dependencies]
embedded-io = { version = "0.6", path = "../embedded-io" }
embedded-io = { version = "0.7", path = "../embedded-io" }
embedded-io-async = { version = "0.6.1", path = "../embedded-io-async", optional = true }

futures = { version = "0.3.21", features = ["std"], default-features = false, optional = true }
Expand Down
2 changes: 1 addition & 1 deletion embedded-io-async/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ alloc = ["embedded-io/alloc"]
defmt = ["dep:defmt", "embedded-io/defmt"]

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

[package.metadata.docs.rs]
Expand Down
8 changes: 5 additions & 3 deletions embedded-io/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
## 0.7.0 - unreleased

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

Expand Down
2 changes: 1 addition & 1 deletion embedded-io/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "embedded-io"
version = "0.6.1"
version = "0.7.0"
edition = "2021"
rust-version = "1.81"
description = "Embedded IO traits"
Expand Down