diff --git a/embedded-io-async/CHANGELOG.md b/embedded-io-async/CHANGELOG.md index 6fb5d519..db7d319a 100644 --- a/embedded-io-async/CHANGELOG.md +++ b/embedded-io-async/CHANGELOG.md @@ -9,10 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Make `Write::flush()` a required method, aligning with std and embedded-io - Update to and align with embedded-io 0.7: + - Increase MSRV to 1.81 - Error type is updated to include core::Error - Update `defmt` dependency to 1.0; rename feature from `defmt_03` to `defmt` - Require `Read` and `Write` to be implemented for various Read and Write traits - Fix missing method forwardings for blanket implementations + - Implement `Read`, `ReadReady`, `BufRead`, `Write`, and `WriteReady` for `VecDeque` - Documentation updates ## 0.6.1 - 2023-11-28 diff --git a/embedded-io/CHANGELOG.md b/embedded-io/CHANGELOG.md index 2da30da3..d077f628 100644 --- a/embedded-io/CHANGELOG.md +++ b/embedded-io/CHANGELOG.md @@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Add provided `.seek_relative()` method to Seek - Fix missing method forwardings for blanket implementations - Specialize `.read_exact()` and `.write_all()` for slices +- Implement `Read`, `ReadReady`, `BufRead`, `Write`, and `WriteReady` for `VecDeque` ## 0.6.1 - 2023-10-22