Skip to content

Commit ef9d202

Browse files
committed
New release
1 parent 85366c1 commit ef9d202

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "edge-net"
3-
version = "0.11.2"
3+
version = "0.12.0"
44
authors = ["Ivan Markov <[email protected]>"]
55
edition = "2021"
66
categories = ["embedded", "hardware-support", "network-programming", "asynchronous"]
@@ -124,5 +124,5 @@ edge-mqtt = { version = "0.4.0", path = "edge-mqtt", default-features = false }
124124
edge-nal = { version = "0.5.0", path = "edge-nal", default-features = false }
125125
edge-raw = { version = "0.6.0", path = "edge-raw", default-features = false }
126126
edge-ws = { version = "0.5.0", path = "edge-ws", default-features = false }
127-
edge-nal-std = { version = "0.5.0", path = "edge-nal-std", default-features = false }
128-
edge-nal-embassy = { version = "0.6.0", path = "edge-nal-embassy", default-features = false }
127+
edge-nal-std = { version = "0.5.1", path = "edge-nal-std", default-features = false }
128+
edge-nal-embassy = { version = "0.7.0", path = "edge-nal-embassy", default-features = false }

edge-nal-embassy/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## [0.7.0] - 2025-11-23
99
* Erase the const generics from the edge-nal-embassy types #78
1010
* Make `Tcp`, `Udp` and `Dns` `Copy`
1111
* Change the TX_SZ and RX_SZ defaults for UDP buffers to 1472 bytes which is a bit smaller yet enough if the overall Ethernet MTU is 1500 bytes (which it typically is; Ethernet MTU might be lower, but is rarely higher)
12+
1213
## [0.6.0] - 2025-05-29
1314
* Optional `defmt` support via two new features (one has to specify one, or the other, or neither, but not both):
1415
* `log` - uses the `log` crate for all logging

edge-nal-embassy/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "edge-nal-embassy"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
edition = "2021"
55
rust-version = "1.83"
66
description = "An implementation of edge-nal based on `embassy-net`"

edge-nal-std/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## [0.5.1] - 2025-11-23
99
* Document the API
1010
* Make `Stack` `Copy`
1111

edge-nal-std/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "edge-nal-std"
3-
version = "0.5.0"
3+
version = "0.5.1"
44
edition = "2021"
55
rust-version = "1.83"
66
description = "A STD implementation of edge-nal based on `async-io`"

0 commit comments

Comments
 (0)