From 4dffbc8e4e5344ba2ea86367d315e23b63e4b299 Mon Sep 17 00:00:00 2001 From: Gris Ge Date: Sat, 18 Apr 2026 20:09:29 +0800 Subject: [PATCH] New release 0.21.0 === Breaking changes - Use netlink-packet-route 0.30. (7bfbbf5) - Deprecated `NeighbourAddRequest::link_layer_address()`, please use `NeighbourAddRequest::link_local_address()`. (7bfbbf5) === New features - link: add vxcan support. (cd212b8) === Bug fixes - addr: only assign broadcast when subnet over /31. (7c16a2d) Signed-off-by: Gris Ge --- CHANGELOG | 12 ++++++++++++ Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 73c940e..3e2c7ce 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,16 @@ # Changelog +## [0.21.0] - 2026-04-18 +### Breaking changes + - Use netlink-packet-route 0.30. (7bfbbf5) + - Deprecated `NeighbourAddRequest::link_local_address()`, please use + `NeighbourAddRequest::link_layer_address()`. (7bfbbf5) + +### New features + - link: add vxcan support. (cd212b8) + +### Bug fixes + - addr: only assign broadcast when subnet over /31. (7c16a2d) + ## [0.20.0] - 2026-01-01 ### Breaking changes - Please check breaking changes in netlink-packet-route 0.28.0 and 0.27.0. diff --git a/Cargo.toml b/Cargo.toml index ea5ade2..d355394 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rtnetlink" -version = "0.20.0" +version = "0.21.0" authors = ["Corentin Henry "] edition = "2021" homepage = "https://github.com/rust-netlink/rtnetlink"