From d88c92a225a7726c6ceb86c3e509d5b8502b666c Mon Sep 17 00:00:00 2001 From: Gris Ge Date: Tue, 18 Aug 2026 14:31:27 +0800 Subject: [PATCH] New release 0.9.0 === Breaking changes - Use netlink-packet-core 0.9.0. (5dd7b8e) === New features - Implement IntoRawFd for Socket. (0d3bf1d) === Bug fixes - make testsuite pass on bigendian. (600033d) - fix: build rust docs for all features, so that we can see `TokioSocket` and others in docs.rs.. (3a49d41) - CHANGELOG: Use `-` instead of `*` for aligning with other rust-netlink crates. (5c08a3a) Signed-off-by: Gris Ge --- CHANGELOG | 14 ++++++++++++++ Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index a20df43..751a177 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,18 @@ # Changelog +## [0.9.0] - 2026-08-18 +### Breaking changes + - Use netlink-packet-core 0.9.0. (5dd7b8e) + +### New features + - Implement IntoRawFd for Socket. (0d3bf1d) + +### Bug fixes + - make testsuite pass on bigendian. (600033d) + - fix: build rust docs for all features, so that we can see `TokioSocket` and + others in docs.rs.. (3a49d41) + - CHANGELOG: Use `-` instead of `*` for aligning with other rust-netlink + crates. (5c08a3a) + ## [0.8.8] - 2026-01-22 ### Breaking changes - N/A diff --git a/Cargo.toml b/Cargo.toml index aff40d0..ca384eb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Corentin Henry "] name = "netlink-sys" -version = "0.8.8" +version = "0.9.0" edition = "2021" homepage = "https://github.com/rust-netlink/netlink-sys" keywords = ["netlink", "ip", "linux"]