From c9c642f16f4792765b6d74e76b10f8bc69aecebb Mon Sep 17 00:00:00 2001 From: ivmarkov Date: Thu, 20 Aug 2026 12:53:34 +0000 Subject: [PATCH] Update to latest openthread and mbedtls-rs --- Cargo.toml | 10 +++++----- edge-nal-openthread/CHANGELOG.md | 3 +++ edge-nal-openthread/Cargo.toml | 2 +- edge-nal-tls/CHANGELOG.md | 3 +++ edge-nal-tls/Cargo.toml | 2 +- 5 files changed, 13 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 42b5822..428435b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "edge-net" -version = "0.14.0" +version = "0.15.0" authors = ["Ivan Markov "] edition = "2021" categories = ["embedded", "hardware-support", "network-programming", "asynchronous"] @@ -139,8 +139,8 @@ base64 = { version = "0.22", default-features = false } sha1_smol = { version = "1", default-features = false } log = { version = "0.4", default-features = false } defmt = { version = "1", default-features = false, features = ["ip_in_core"] } -mbedtls-rs = { version = "0.1", default-features = false } -openthread = { version = "0.2", default-features = false } +mbedtls-rs = { version = "0.2", default-features = false } +openthread = { version = "0.3", default-features = false } edge-captive = { version = "0.8", path = "edge-captive", default-features = false } edge-dhcp = { version = "0.8", path = "edge-dhcp", default-features = false } @@ -151,5 +151,5 @@ edge-raw = { version = "0.8", path = "edge-raw", default-features = false } edge-ws = { version = "0.8", path = "edge-ws", default-features = false } edge-nal-std = { version = "0.7", path = "edge-nal-std", default-features = false } edge-nal-embassy = { version = "0.9", path = "edge-nal-embassy", default-features = false } -edge-nal-tls = { version = "0.1", path = "edge-nal-tls", default-features = false } -edge-nal-openthread = { version = "0.1", path = "edge-nal-openthread", default-features = false } +edge-nal-tls = { version = "0.2", path = "edge-nal-tls", default-features = false } +edge-nal-openthread = { version = "0.2", path = "edge-nal-openthread", default-features = false } diff --git a/edge-nal-openthread/CHANGELOG.md b/edge-nal-openthread/CHANGELOG.md index c8aee9a..780718e 100644 --- a/edge-nal-openthread/CHANGELOG.md +++ b/edge-nal-openthread/CHANGELOG.md @@ -5,5 +5,8 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.2.0] - 2026-08-20 +* Update to openthread v0.3 + ## [0.1.0] - 2026-06-25 * Initial release diff --git a/edge-nal-openthread/Cargo.toml b/edge-nal-openthread/Cargo.toml index 0d64c0e..8ecac80 100644 --- a/edge-nal-openthread/Cargo.toml +++ b/edge-nal-openthread/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "edge-nal-openthread" -version = "0.1.0" +version = "0.2.0" edition = "2021" rust-version = "1.88" description = "An implementation of edge-nal's UDP traits over OpenThread (Thread), using `openthread`" diff --git a/edge-nal-tls/CHANGELOG.md b/edge-nal-tls/CHANGELOG.md index c8aee9a..b05d1b7 100644 --- a/edge-nal-tls/CHANGELOG.md +++ b/edge-nal-tls/CHANGELOG.md @@ -5,5 +5,8 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.2.0] - 2026-08-20 +* Update to mbedtls-rs v0.2 + ## [0.1.0] - 2026-06-25 * Initial release diff --git a/edge-nal-tls/Cargo.toml b/edge-nal-tls/Cargo.toml index ec6cd08..8d7f484 100644 --- a/edge-nal-tls/Cargo.toml +++ b/edge-nal-tls/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "edge-nal-tls" -version = "0.1.0" +version = "0.2.0" edition = "2021" rust-version = "1.88" description = "An implementation of edge-nal's TCP factory and socket traits over TLS, using `mbedtls-rs`"