Skip to content
This repository was archived by the owner on Oct 26, 2022. It is now read-only.

Commit 8a02fe5

Browse files
committed
New bundle release 20220715
== Versioning * rtnetlink 0.10.1 -> 0.11.0 * netlink-packet-route 0.12.0 -> 0.13.0 == Breaking Changes * netlink-packet-route: `rtnl::link::nlas::InfoData::Bond` changed from `Vec<u8>` to `Vec<InfoBond>`. (99b5765) == New Features * Add support bond. (99b5765) == Bug fixes * Fix the flag of link deletion. (9dccf92) Signed-off-by: Gris Ge <[email protected]>
1 parent 9dccf92 commit 8a02fe5

File tree

6 files changed

+21
-6
lines changed

6 files changed

+21
-6
lines changed

CHANGELOG

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,21 @@
55
### New Features
66
### Bug fixes
77

8+
## [20220715] 2022-07-15
9+
### Versioning
10+
* rtnetlink 0.10.1 -> 0.11.0
11+
* netlink-packet-route 0.12.0 -> 0.13.0
12+
13+
### Breaking Changes
14+
* netlink-packet-route: `rtnl::link::nlas::InfoData::Bond` changed from
15+
`Vec<u8>` to `Vec<InfoBond>`. (99b5765)
16+
17+
### New Features
18+
* Add support bond. (99b5765)
19+
20+
### Bug fixes
21+
* Fix the flag of link deletion. (9dccf92)
22+
823
## [20220624] 2022-06-24
924
### Versioning
1025
* audit 0.7.0 -> 0.7.1

netlink-packet-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ libc = "0.2.66"
1818
netlink-packet-utils = { version = "0.5.1", path = "../netlink-packet-utils" }
1919

2020
[dev-dependencies]
21-
netlink-packet-route = { version = "0.12.0", path = "../netlink-packet-route" }
21+
netlink-packet-route = { version = "0.13.0", path = "../netlink-packet-route" }

netlink-packet-route/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.12.0"
4+
version = "0.13.0"
55
edition = "2018"
66

77
homepage = "https://github.com/little-dude/netlink"

netlink-packet-route/fuzz/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2018"
99
cargo-fuzz = true
1010

1111
[dependencies]
12-
netlink-packet-route = { path = "../", version = "0.12.0" }
12+
netlink-packet-route = { path = "../", version = "0.13" }
1313
libfuzzer-sys = { git = "https://github.com/rust-fuzz/libfuzzer-sys.git" }
1414

1515
[[bin]]

netlink-proto/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ smol_socket = ["netlink-sys/smol_socket"]
2828
[dev-dependencies]
2929
env_logger = "0.8.2"
3030
tokio = { version = "1.0.1", default-features = false, features = ["macros", "rt-multi-thread"] }
31-
netlink-packet-route = { version = "0.12.0", path = "../netlink-packet-route" }
31+
netlink-packet-route = { version = "0.13.0", path = "../netlink-packet-route" }
3232
netlink-packet-audit = { version = "0.4.1", path = "../netlink-packet-audit" }
3333
async-std = {version = "1.9.0", features = ["attributes"]}
3434

rtnetlink/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rtnetlink"
3-
version = "0.10.1"
3+
version = "0.11.0"
44
authors = ["Corentin Henry <[email protected]>"]
55
edition = "2018"
66

@@ -21,7 +21,7 @@ smol_socket = ["netlink-proto/smol_socket", "async-global-executor"]
2121
futures = "0.3.11"
2222
log = "0.4.8"
2323
thiserror = "1"
24-
netlink-packet-route = { version = "0.12.0", path = "../netlink-packet-route" }
24+
netlink-packet-route = { version = "0.13.0", path = "../netlink-packet-route" }
2525
netlink-proto = { default-features = false, version = "0.10", path = "../netlink-proto" }
2626
nix = { version = "0.24.1" , default-features = false, features = ["fs", "mount", "sched", "signal"] }
2727
tokio = { version = "1.0.1", features = ["rt"], optional = true}

0 commit comments

Comments
 (0)