From afe85862d9eb5873f07867ff8b6dd7eeb444109c Mon Sep 17 00:00:00 2001 From: Dario Nieuwenhuis Date: Tue, 3 Oct 2023 21:07:46 +0200 Subject: [PATCH] Update to embedded-io v0.6, release -nal-async v0.6 --- embedded-nal-async/CHANGELOG.md | 7 ++++++- embedded-nal-async/Cargo.toml | 4 ++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/embedded-nal-async/CHANGELOG.md b/embedded-nal-async/CHANGELOG.md index 6e6d052..9031b1f 100644 --- a/embedded-nal-async/CHANGELOG.md +++ b/embedded-nal-async/CHANGELOG.md @@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/). No unreleased changes yet. +## [0.6.0] - 2023-10-03 + +- Bumped to `embedded-io-async` 0.6 + ## [0.5.0] - 2023-08-07 - Let `&T` for `T: Dns` implement `Dns` @@ -33,7 +37,8 @@ Remove TcpClientStack, TcpFullStack and UDP traits pending traits that support s Initial release to crates.io. -[Unreleased]: https://github.com/rust-embedded-community/embedded-nal/compare/embedded-nal-async-v0.5.0...HEAD +[Unreleased]: https://github.com/rust-embedded-community/embedded-nal/compare/embedded-nal-async-v0.6.0...HEAD +[0.6.0]: https://github.com/rust-embedded-community/embedded-nal/compare/embedded-nal-async-v0.5.0...embedded-nal-async-v0.6.0 [0.5.0]: https://github.com/rust-embedded-community/embedded-nal/compare/embedded-nal-async-v0.4.0...embedded-nal-async-v0.5.0 [0.4.0]: https://github.com/rust-embedded-community/embedded-nal/compare/embedded-nal-async-v0.3.0...embedded-nal-async-v0.4.0 [0.1.0]: https://github.com/rust-embedded-community/embedded-nal/releases/tag/embedded-nal-async-v0.1.0 diff --git a/embedded-nal-async/Cargo.toml b/embedded-nal-async/Cargo.toml index 59193b1..e5c0769 100644 --- a/embedded-nal-async/Cargo.toml +++ b/embedded-nal-async/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "embedded-nal-async" -version = "0.5.0" +version = "0.6.0" edition = "2021" description = "An Async Network Abstraction Layer (NAL) for Embedded Systems" license = "MIT OR Apache-2.0" @@ -18,4 +18,4 @@ ip_in_core = [] no-std-net = "0.6" heapless = "^0.7" embedded-nal = { version = "0.7.0", path = "../" } -embedded-io-async = { version = "0.5.0" } +embedded-io-async = { version = "0.6.0" }