From 6d77e01b8decc4a4bcae5a1c490203852e555fea Mon Sep 17 00:00:00 2001 From: Gris Ge Date: Thu, 1 Feb 2024 23:11:38 +0800 Subject: [PATCH] New release 0.14.1 === Breaking changes - N/A === New features - FreeBSD support. (eb04e60) - Support specifying MAC address in `LinkAddRequest`. (d76171c) - Support creating wireguard link in `LinkAddRequest`. (24982ec) - Support setting priority in `RouteAddRequest`. (c840e78) === Bug fixes - Fixing docs of AddressGetRequest::set_address_filter. (006a348) Signed-off-by: Gris Ge --- CHANGELOG | 13 +++++++++++++ Cargo.toml | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 0759790..1895bb5 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,17 @@ # Changelog +## [0.14.1] - 2024-02-01 +### Breaking changes + - N/A + +### New features + - FreeBSD support. (eb04e60) + - Support specifying MAC address in `LinkAddRequest`. (d76171c) + - Support creating wireguard link in `LinkAddRequest`. (24982ec) + - Support setting priority in `RouteAddRequest`. (c840e78) + +### Bug fixes + - Fixing docs of AddressGetRequest::set_address_filter. (006a348) + ## [0.14.0] - 2023-12-05 ### Breaking changes - Many `VxlanAddRequest` functions changed from u8 to bool. (ba4825a) diff --git a/Cargo.toml b/Cargo.toml index 5746246..2f3ba65 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rtnetlink" -version = "0.14.0" +version = "0.14.1" authors = ["Corentin Henry "] edition = "2018" homepage = "https://github.com/rust-netlink/rtnetlink"