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

Commit

Permalink
New bundle release 20220715
Browse files Browse the repository at this point in the history
== 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 <cnfourt@gmail.com>
  • Loading branch information
cathay4t committed Jul 26, 2022
1 parent 9dccf92 commit 8a02fe5
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 6 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,21 @@
### New Features
### Bug fixes

## [20220715] 2022-07-15
### 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)

## [20220624] 2022-06-24
### Versioning
* audit 0.7.0 -> 0.7.1
Expand Down
2 changes: 1 addition & 1 deletion netlink-packet-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ libc = "0.2.66"
netlink-packet-utils = { version = "0.5.1", path = "../netlink-packet-utils" }

[dev-dependencies]
netlink-packet-route = { version = "0.12.0", path = "../netlink-packet-route" }
netlink-packet-route = { version = "0.13.0", path = "../netlink-packet-route" }
2 changes: 1 addition & 1 deletion netlink-packet-route/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
authors = ["Corentin Henry <corentinhenry@gmail.com>"]
name = "netlink-packet-route"
version = "0.12.0"
version = "0.13.0"
edition = "2018"

homepage = "https://github.com/little-dude/netlink"
Expand Down
2 changes: 1 addition & 1 deletion netlink-packet-route/fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ edition = "2018"
cargo-fuzz = true

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

[[bin]]
Expand Down
2 changes: 1 addition & 1 deletion netlink-proto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ smol_socket = ["netlink-sys/smol_socket"]
[dev-dependencies]
env_logger = "0.8.2"
tokio = { version = "1.0.1", default-features = false, features = ["macros", "rt-multi-thread"] }
netlink-packet-route = { version = "0.12.0", path = "../netlink-packet-route" }
netlink-packet-route = { version = "0.13.0", path = "../netlink-packet-route" }
netlink-packet-audit = { version = "0.4.1", path = "../netlink-packet-audit" }
async-std = {version = "1.9.0", features = ["attributes"]}

Expand Down
4 changes: 2 additions & 2 deletions rtnetlink/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rtnetlink"
version = "0.10.1"
version = "0.11.0"
authors = ["Corentin Henry <corentinhenry@gmail.com>"]
edition = "2018"

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

0 comments on commit 8a02fe5

Please sign in to comment.