diff --git a/CHANGELOG b/CHANGELOG new file mode 100644 index 00000000..e541c879 --- /dev/null +++ b/CHANGELOG @@ -0,0 +1,17 @@ +# Changelog +## [0.14.0] - 2023-01-28 +### Breaking changes + - All public struct and enum are marked as `non_exhaustive`. Please check + https://doc.rust-lang.org/reference/attributes/type_system.html for more + detail. (0b98180) + + - Removed the reexport `netlink-packet-core::utils`, please use + `netlink_packet_utils` directly. (a76010a) + +### New features + - LinkAddRequest: Allow adding XFRM tunnel with if_id mark. (5507d97) + - Bridge: Add support of `IFLA_BR_MCAST_QUERIER_STATE. (3d91fdf) + - LinkAddRequest: Allow adding macvtap on a link. (dabd5dc) + +### Bug fixes + - Fix panics when using iif or oif with ip rule. (dab602e) diff --git a/Cargo.toml b/Cargo.toml index e2a3287b..0a36855f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Corentin Henry "] name = "netlink-packet-route" -version = "0.13.0" +version = "0.14.0" edition = "2018" homepage = "https://github.com/rust-netlink/netlink-packet-route"