From 12b5f0bb2bf2caeb2d3b20f10ef2fb2b2da85575 Mon Sep 17 00:00:00 2001 From: Gris Ge Date: Tue, 5 Dec 2023 22:08:09 +0800 Subject: [PATCH] New release 0.18.0 === Breaking changes - MASSIVE changes to API in order to 1.0 preparation. Please check document or code for detail. Sorry for the inconvenience. === New features - Support HSR interface. (37f9c5c) === Bug fixes - vxlan: Do not fail on unknown option. (2457bdf) - bond: Do not fail on unknown option. (acac109) - vlan: Do not fail on unknown option. (1617948) Signed-off-by: Gris Ge --- CHANGELOG | 14 ++++++++++++++ Cargo.toml | 4 ++-- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 54ed2d44..ba0db465 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,18 @@ # Changelog +## [0.18.0] - 2023-12-05 +### Breaking changes + + - MASSIVE changes to API in order to 1.0 preparation. Please check + document or code for detail. Sorry for the inconvenience. + +### New features + - Support HSR interface. (37f9c5c) + +### Bug fixes + - vxlan: Do not fail on unknown option. (2457bdf) + - bond: Do not fail on unknown option. (acac109) + - vlan: Do not fail on unknown option. (1617948) + ## [0.17.1] - 2023-08-30 ### Breaking changes - N/A diff --git a/Cargo.toml b/Cargo.toml index ddb1f99d..66d23fab 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,8 @@ [package] authors = ["Corentin Henry "] name = "netlink-packet-route" -version = "0.17.1" -edition = "2018" +version = "0.18.0" +edition = "2021" homepage = "https://github.com/rust-netlink/netlink-packet-route" keywords = ["netlink", "linux"]