From db19d7a61f8c4714b566c7d76ac9ba1ed44d9f92 Mon Sep 17 00:00:00 2001 From: little-dude Date: Sat, 15 Jan 2022 10:16:41 +0100 Subject: [PATCH] release ethtool, genetlink, netlink-packet-wireguard ref: https://github.com/little-dude/netlink/pull/223/ --- CHANGELOG | 21 +++++++++++++++++++++ ethtool/Cargo.toml | 4 ++-- genetlink/Cargo.toml | 2 +- netlink-packet-wireguard/Cargo.toml | 4 ++-- 4 files changed, 26 insertions(+), 5 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 17ff128f..4f0d77f0 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -5,6 +5,27 @@ ### New Features ### Bug fixes +## [20211229] 2022-01-15 + +### Versioning + +* ethtool 0.2.0 -> 0.2.1 (0.2.0 yanked) +* genetlink 0.2.0 -> 0.2.1 (0.2.0 yanked) +* netlink-packet-wireguard -> 0.1.1 (0.1.0 yanked) + +### Breaking changes + +None + +### New Features + +None + +### Bug fixes + +Fix dependencies in the netlink generic crates. See: https://github.com/little-dude/netlink/pull/223/files + + ## [20211229] 2021-12-29 ### Versioning diff --git a/ethtool/Cargo.toml b/ethtool/Cargo.toml index 524fecbb..27bed047 100644 --- a/ethtool/Cargo.toml +++ b/ethtool/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ethtool" -version = "0.2.0" +version = "0.2.1" authors = ["Gris Ge "] license = "MIT" edition = "2018" @@ -24,7 +24,7 @@ anyhow = "1.0.44" async-std = { version = "1.9.0", optional = true} byteorder = "1.4.3" futures = "0.3.17" -genetlink = { default-features = false, version = "0.2.0"} +genetlink = { default-features = false, version = "0.2.1"} log = "0.4.14" netlink-packet-core = "0.4.0" netlink-packet-generic = "0.3.0" diff --git a/genetlink/Cargo.toml b/genetlink/Cargo.toml index 81ecaf2e..2f24ab9a 100644 --- a/genetlink/Cargo.toml +++ b/genetlink/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "genetlink" -version = "0.2.0" +version = "0.2.1" authors = ["Leo "] edition = "2018" homepage = "https://github.com/little-dude/netlink" diff --git a/netlink-packet-wireguard/Cargo.toml b/netlink-packet-wireguard/Cargo.toml index 292e9725..1dd732d5 100644 --- a/netlink-packet-wireguard/Cargo.toml +++ b/netlink-packet-wireguard/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "netlink-packet-wireguard" -version = "0.1.0" +version = "0.1.1" authors = ["Leo "] edition = "2018" homepage = "https://github.com/little-dude/netlink" @@ -24,5 +24,5 @@ env_logger = "0.9.0" futures = "0.3.16" netlink-packet-core = "0.4.0" netlink-proto = "0.9.0" -genetlink = "0.2.0" +genetlink = "0.2.1" tokio = { version = "1.9.0", features = ["macros", "rt-multi-thread"] }