From fd03d851119faed9f70f78a22b1e0a32aaca6ddb Mon Sep 17 00:00:00 2001 From: Gris Ge Date: Thu, 1 Jan 2026 18:32:15 +0800 Subject: [PATCH] New release 0.20.0 === Breaking changes - Please check breaking changes in netlink-packet-route 0.28.0 and 0.27.0. - Use netlink-packet-route 0.28.0. (0486ff7) - Change `LinkBond` to align with rust-netlink-route 0.27.0. (563f95d) === New features - link: Support specifying arbitrary LinkMessage for `RTM_DELLINK`. (d4d5a4b) - link: Support changing VLAN filter of bridge itself. (1f8b7da) - link: Support changing bridge VLAN filtering. (e520140) - link: Add `LinkBridgePort` for modifying bridge port properties. (86dd67d) - link: Expand LinkBridge to support all bridge options. (c85d988) - link: Add support for `netkit` devices. (2f18ca4) - link: Add `LinkHandle::change()` to changing existing interface.. (2d1a6cc) === Bug fixes - link bridge: Fix typo of document. (a994f72) Signed-off-by: Gris Ge --- CHANGELOG | 18 ++++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index a5495d2..73c940e 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,22 @@ # Changelog +## [0.20.0] - 2026-01-01 +### Breaking changes + - Please check breaking changes in netlink-packet-route 0.28.0 and 0.27.0. + - Use netlink-packet-route 0.28.0. (0486ff7) + - Change `LinkBond` to align with rust-netlink-route 0.27.0. (563f95d) + +### New features + - link: Support specifying arbitrary LinkMessage for `RTM_DELLINK`. (d4d5a4b) + - link: Support changing VLAN filter of bridge itself. (1f8b7da) + - link: Support changing bridge VLAN filtering. (e520140) + - link: Add `LinkBridgePort` for modifying bridge port properties. (86dd67d) + - link: Expand LinkBridge to support all bridge options. (c85d988) + - link: Add support for `netkit` devices. (2f18ca4) + - link: Add `LinkHandle::change()` to changing existing interface. (2d1a6cc) + +### Bug fixes + - link bridge: Fix typo of document. (a994f72) + ## [0.19.0] - 2025-12-09 ### Breaking changes - Please check breaking changes of netlink-packet-route 0.19.0 diff --git a/Cargo.toml b/Cargo.toml index 9bdeda4..6261471 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rtnetlink" -version = "0.19.0" +version = "0.20.0" authors = ["Corentin Henry "] edition = "2021" homepage = "https://github.com/rust-netlink/rtnetlink"