From f1175eaeaf24c186db065358bf03aa239b924dc7 Mon Sep 17 00:00:00 2001 From: Gris Ge Date: Tue, 18 Aug 2026 15:39:47 +0800 Subject: [PATCH] New release 0.3.0 === Breaking changes - Use latest rust-netlink crates. (7f6f09d) === New features - Change TryStream to Stream. (15810b2) - Adding support for dumping eeprom pages.. (f923530) === Bug fixes - Cargo: Use `futures-util` and `futures-channel` to replace `futures` crate. (f79bc8b) - link_mode: Support convert EthtoolLinkModeDuplex to u8. (64382a5) Signed-off-by: Gris Ge --- CHANGELOG | 12 ++++++++++++ Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index d1ce467..708b900 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,16 @@ # Changelog +## [0.3.0] - 2026-08-18 +### Breaking changes + - Use latest rust-netlink crates. (7f6f09d) + +### New features + - Change TryStream to Stream. (15810b2) + - Adding support for dumping eeprom pages.. (f923530) + +### Bug fixes + - Cargo: Use `futures-util` and `futures-channel` to replace `futures` crate. (f79bc8b) + - link_mode: Support convert EthtoolLinkModeDuplex to u8. (64382a5) + ## [0.2.9] - 2025-08-28 ### Breaking changes - N/A diff --git a/Cargo.toml b/Cargo.toml index bc6fc80..25da188 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ethtool" -version = "0.2.9" +version = "0.3.0" authors = ["Gris Ge "] license = "MIT" edition = "2021"