Skip to content

Commit 5697369

Browse files
authored
Update embedded-io, release.
Reviewed-on: #109
2 parents 112d2f5 + a1fd1ec commit 5697369

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

embedded-nal-async/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
99

1010
No unreleased changes yet
1111

12+
## [0.9.0] - 2025-10-01
13+
14+
- Updated to `embedded-io-async` 0.7
15+
1216
## [0.8.0] - 2024-09-20
1317

1418
- Removed the `ip_in_core` feature, this is now the default.
@@ -51,7 +55,8 @@ Remove TcpClientStack, TcpFullStack and UDP traits pending traits that support s
5155

5256
Initial release to crates.io.
5357

54-
[Unreleased]: https://github.com/rust-embedded-community/embedded-nal/compare/embedded-nal-async-v0.8.0...HEAD
58+
[Unreleased]: https://github.com/rust-embedded-community/embedded-nal/compare/embedded-nal-async-v0.9.0...HEAD
59+
[0.9.0]: https://github.com/rust-embedded-community/embedded-nal/compare/embedded-nal-async-v0.8.0...embedded-nal-async-v0.9.0
5560
[0.8.0]: https://github.com/rust-embedded-community/embedded-nal/compare/embedded-nal-async-v0.7.1...embedded-nal-async-v0.8.0
5661
[0.7.1]: https://github.com/rust-embedded-community/embedded-nal/compare/embedded-nal-async-v0.7.0...embedded-nal-async-v0.7.1
5762
[0.7.0]: https://github.com/rust-embedded-community/embedded-nal/compare/embedded-nal-async-v0.6.0...embedded-nal-async-v0.7.0

embedded-nal-async/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-nal-async"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2021"
55
description = "An Async Network Abstraction Layer (NAL) for Embedded Systems"
66
license = "MIT OR Apache-2.0"
@@ -13,4 +13,4 @@ categories = ["embedded", "hardware-support", "no-std", "network-programming", "
1313

1414
[dependencies]
1515
embedded-nal = { version = "0.9.0", path = "../" }
16-
embedded-io-async = { version = "0.6.0" }
16+
embedded-io-async = { version = "0.7.0" }

embedded-nal-async/src/stack/tcp.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,10 @@ pub trait TcpConnect {
2424
impl<T: TcpConnect> TcpConnect for &T {
2525
type Error = T::Error;
2626

27-
type Connection<'a> = T::Connection<'a> where Self: 'a;
27+
type Connection<'a>
28+
= T::Connection<'a>
29+
where
30+
Self: 'a;
2831

2932
async fn connect<'a>(
3033
&'a self,

0 commit comments

Comments
 (0)