From 369cc061b4afbdec90a0139771c148933a6e0501 Mon Sep 17 00:00:00 2001 From: datdenkikniet Date: Fri, 14 Nov 2025 22:27:15 +0100 Subject: [PATCH 1/2] Update CHANGELOG.md --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b8fa02..9573363 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## Unreleased +* Fixed bug in `smoltcp::phy::Device` implementation that caused panics on RX errors ([#102]) + +[#102]: https://github.com/stm32-rs/stm32-eth/pull/102 + ## [0.8.0](https://github.com/stm32-rs/stm32-eth/tree/v0.8.0) * Update version of `smoltcp` to `v0.12.0` ([#99]) From 399ae10e9044e015a23417793f078d87417916d1 Mon Sep 17 00:00:00 2001 From: datdenkikniet Date: Fri, 14 Nov 2025 22:27:42 +0100 Subject: [PATCH 2/2] Release v0.8.1 --- CHANGELOG.md | 1 + Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9573363..7e731a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ ## Unreleased +## [0.8.1](https://github.com/stm32-rs/stm32-eth/tree/v0.8.1) * Fixed bug in `smoltcp::phy::Device` implementation that caused panics on RX errors ([#102]) [#102]: https://github.com/stm32-rs/stm32-eth/pull/102 diff --git a/Cargo.toml b/Cargo.toml index cc45a0e..0b0be09 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ name = "stm32-eth" description = "Embedded Rust Ethernet driver for the STM32 MCU series" license = "Apache-2.0" authors = ["Astro ", "Johannes Draaijer "] -version = "0.8.0" +version = "0.8.1" keywords = ["ethernet", "eth", "stm32", "stm32f4", "stm32f7"] repository = "https://github.com/stm32-rs/stm32-eth" documentation = "https://docs.rs/stm32-eth/"