From 8811b0d355740d796d63c68c5f6b0c66bea927c2 Mon Sep 17 00:00:00 2001 From: Gris Ge Date: Tue, 21 Jan 2025 10:22:59 +0800 Subject: [PATCH] New release 0.11.4 === Breaking changes - N/A === New features - Add ENOBUFS handling for unsolicited messages (051ef77) - New function to forward ACK/DONE/NOOP message to handler (9de99ce) - Allow the user to specify their own socket (3c6fc4e) === Bug fixes - N/A Signed-off-by: Gris Ge --- CHANGELOG | 12 ++++++++++++ Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 9b9eed6..b475a74 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,16 @@ # Changelog +## [0.11.4] - 2025-01-21 +### Breaking changes + - N/A + +### New features + - Add ENOBUFS handling for unsolicited messages (051ef77) + - New function to forward ACK/DONE/NOOP message to handler (9de99ce) + - Allow the user to specify their own socket (3c6fc4e) + +### Bug fixes + - N/A + ## [0.11.3] - 2024-01-12 ### Breaking changes - N/A diff --git a/Cargo.toml b/Cargo.toml index 20c5312..4b204d0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Corentin Henry "] name = "netlink-proto" -version = "0.11.3" +version = "0.11.4" edition = "2018" homepage = "https://github.com/rust-netlink/netlink-proto"