diff --git a/CHANGELOG b/CHANGELOG index 584981c..55eee26 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,18 @@ # Changelog +## [0.6.0] - 2025-04-02 +### Breaking changes + - Changed `DecodeError` from `struct` to `enum`. (5e39d65) + - Changed `EncodeError` from `struct` to `enum`. (0353682) + - DecodeError and EncodeError is marked as non_exhaustive. (1e7454c) + - Removed the use of `anyhow`. (5e39d65, 0353682) + - Replaced `paste` with pastey. (8897cf0) + +### New features + - Add `parse_i64()`. (414d14e) + +### Bug fixes + - N/A + ## [0.5.2] - 2023-01-28 ### Breaking changes - N/A diff --git a/Cargo.toml b/Cargo.toml index c7d2035..e44e709 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "netlink-packet-utils" -version = "0.5.2" +version = "0.6.0" authors = ["Corentin Henry "] edition = "2018" homepage = "https://github.com/rust-netlink/netlink-packet-utils"