bump embassy-time 0.3, embassy-executor 0.5, embassy-net 0.4.

This commit is contained in:
Dario Nieuwenhuis
2024-01-11 22:57:29 +01:00
parent f0606da9ad
commit 22197320ff
64 changed files with 137 additions and 123 deletions

View File

@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased
## 0.4 - 2024-01-11
- Update to `embassy-time` v0.3.
## 0.3 - 2024-01-04
- Added `ReadReady` and `WriteReady` impls on `TcpSocket`.

View File

@@ -1,6 +1,6 @@
[package]
name = "embassy-net"
version = "0.3.0"
version = "0.4.0"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Async TCP/IP network stack for embedded systems"
@@ -69,7 +69,7 @@ smoltcp = { version = "0.11.0", default-features = false, features = [
] }
embassy-net-driver = { version = "0.2.0", path = "../embassy-net-driver" }
embassy-time = { version = "0.2", path = "../embassy-time" }
embassy-time = { version = "0.3.0", path = "../embassy-time" }
embassy-sync = { version = "0.5.0", path = "../embassy-sync" }
embedded-io-async = { version = "0.6.1" }