Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,25 @@
# Changelog
## [0.3.0] - 2026-01-26
### Breaking changes
- Rewrite to align with netlink-packet-route code style. (3067a39)
- All netlink attribute are marked as `#[non_exhaustive]`.
- Renamed `Wireguard` to `WireguardMessage`.
- Renamed `WgDeviceAttrs` to `WireguardAttribute`.
- Renamed `WgAllowedIp` to `WireguardAllowedIp`.
- Renamed `WgPeerAttrs` to `WireguardPeer`.
- Renamed `WgPeer` to `WireguardPeerAttribute`.
- Will not expose any constants.
- Changed the use of `std::time::SystemTime` to self-defined
`WireguardTimeSpec`.
- Do not raise error for unknown attribute but store in
`Self::Other(DefaultNla)`.

### New features
- N/A

### Bug fixes
- N/A

## [0.2.4] - 2023-07-10
### Breaking changes
- N/A
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "netlink-packet-wireguard"
version = "0.2.4"
version = "0.3.0"
authors = ["Leo <[email protected]>", "Jake McGinty <[email protected]>"]
edition = "2021"
homepage = "https://github.com/rust-netlink/netlink-packet-wireguard"
Expand Down