Skip to content

Commit

Permalink
New release 0.14.0
Browse files Browse the repository at this point in the history
=== 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)

Signed-off-by: Gris Ge <[email protected]>
  • Loading branch information
cathay4t committed Jan 28, 2023
1 parent e028322 commit 74b4fef
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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)
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
authors = ["Corentin Henry <[email protected]>"]
name = "netlink-packet-route"
version = "0.13.0"
version = "0.14.0"
edition = "2018"

homepage = "https://github.com/rust-netlink/netlink-packet-route"
Expand Down

0 comments on commit 74b4fef

Please sign in to comment.