From 70b863788401816a98d2ec8da536b98437f6bc1d Mon Sep 17 00:00:00 2001 From: Gris Ge Date: Mon, 10 Jul 2023 11:31:20 +0800 Subject: [PATCH] New release 0.17.0 === Breaking changes - `InfoVlan::EgressQos(Vec)` changed to `InfoVlan::EgressQos(Vec)`. (2d33edb) - `InfoVlan::IngressQos(Vec)` changed to `InfoVlan::IngressQos(Vec)`. (2d33edb) === New features - Added rich representation for VLAN QOS mapping. (2d33edb) - Added MacVlan IFLA_MACVLAN_BC_ options. (640be35) === Bug fixes - N/A Signed-off-by: Gris Ge --- CHANGELOG | 14 ++++++++++++++ Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index d4373f47..aa87c4f9 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,18 @@ # Changelog +## [0.17.0] - 2023-07-10 +### Breaking changes + - `InfoVlan::EgressQos(Vec)` changed to + `InfoVlan::EgressQos(Vec)`. (2d33edb) + - `InfoVlan::IngressQos(Vec)` changed to + `InfoVlan::IngressQos(Vec)`. (2d33edb) + +### New features + - Added rich representation for VLAN QOS mapping. (2d33edb) + - Added MacVlan IFLA_MACVLAN_BC_ options. (640be35) + +### Bug fixes + - N/A + ## [0.16.1] - 2023-07-10 ### Breaking changes - N/A diff --git a/Cargo.toml b/Cargo.toml index b807b015..2b7f372e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Corentin Henry "] name = "netlink-packet-route" -version = "0.16.1" +version = "0.17.0" edition = "2018" homepage = "https://github.com/rust-netlink/netlink-packet-route"