Skip to content

Commit 6701a5d

Browse files
committed
New release 0.24.0
=== Breaking changes - Changed `InfoBond::PrimaryReselect` from u8 to enum. (7be1634) === New features - ICMP6: Add support of ICMP6_MIB_RATELIMITHOST. (3497a69) - Support Seg6 encapsulation type. (1a33cd3) - impl `From<IpAddr>` for `RouteVia`. (7ef6bf6) === Bug fixes - Fix parsing error on empty IFLA_AF_SPEC. (5e54549) - Fix panic of integer underflow in `RouteNextHopBuffer`. (a285aba) Signed-off-by: Gris Ge <[email protected]>
1 parent fe678df commit 6701a5d

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

CHANGELOG

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,17 @@
11
# Changelog
2+
## [0.24.0] - 2025-05-21
3+
### Breaking changes
4+
- Changed `InfoBond::PrimaryReselect` from u8 to enum. (7be1634)
5+
6+
### New features
7+
- ICMP6: Add support of ICMP6_MIB_RATELIMITHOST. (3497a69)
8+
- Support Seg6 encapsulation type. (1a33cd3)
9+
- impl `From<IpAddr>` for `RouteVia`. (7ef6bf6)
10+
11+
### Bug fixes
12+
- Fix parsing error on empty IFLA_AF_SPEC. (5e54549)
13+
- Fix panic of integer underflow in `RouteNextHopBuffer`. (a285aba)
14+
215
## [0.23.0] - 2025-04-30
316
### Breaking changes
417
- `InfoBond::ArpAllTargets` changed to enum. (507ea73)

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["Corentin Henry <[email protected]>"]
33
name = "netlink-packet-route"
4-
version = "0.23.0"
4+
version = "0.24.0"
55
edition = "2021"
66

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

tools/make_release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ git reset --hard upstream/$MAIN_BRANCH_NAME
5656

5757
echo "Checking 'cargo publish --dry-run'"
5858
cargo set-version $NEXT_VERSION
59-
cargo publish --dry-run
59+
cargo publish --dry-run --allow-dirty
6060

6161
echo "# Changelog" > $TMP_CHANGELOG_FILE
6262
echo "## [$NEXT_VERSION] - $(date +%F)" >> $TMP_CHANGELOG_FILE

0 commit comments

Comments
 (0)