From 3477b3700f8df49fcbc568f791d0c8f68845b9f6 Mon Sep 17 00:00:00 2001 From: Gris Ge Date: Wed, 30 Aug 2023 17:54:59 +0800 Subject: [PATCH] New release 0.17.1 === Breaking changes - N/A === New features - Add support of MACsec interface. (050fd64) === Bug fixes - vxlan: fix port-range attribute marshalling. (55de269) - vxlan: fix port-range attribute endianness. (ce406b2) - vxlan: fix port attribute endianness. (927bdd7) Signed-off-by: Gris Ge --- CHANGELOG | 12 ++++++++++++ Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index aa87c4f9..54ed2d44 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,16 @@ # Changelog +## [0.17.1] - 2023-08-30 +### Breaking changes + - N/A + +### New features + - Add support of MACsec interface. (050fd64) + +### Bug fixes + - vxlan: fix port-range attribute marshalling. (55de269) + - vxlan: fix port-range attribute endianness. (ce406b2) + - vxlan: fix port attribute endianness. (927bdd7) + ## [0.17.0] - 2023-07-10 ### Breaking changes - `InfoVlan::EgressQos(Vec)` changed to diff --git a/Cargo.toml b/Cargo.toml index 2b7f372e..8097eced 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Corentin Henry "] name = "netlink-packet-route" -version = "0.17.0" +version = "0.17.1" edition = "2018" homepage = "https://github.com/rust-netlink/netlink-packet-route"