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

Commit

Permalink
update CHANGELOG for release
Browse files Browse the repository at this point in the history
  • Loading branch information
little-dude committed Dec 29, 2021
1 parent 731e0d3 commit 309eccf
Show file tree
Hide file tree
Showing 11 changed files with 51 additions and 10 deletions.
41 changes: 41 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,47 @@
### New Features
### Bug fixes

## [20211229] 2021-12-29

### Versioning

* audit 0.4.0 -> 0.5.0
* ethtool 0.1.0 -> 0.2.0
* genetlink 0.1.0 -> 0.2.0
* netlink-packet-audit 0.2.2 -> 0.3.0
* netlink-packet-core 0.2.4 -> 0.3.0
* netlink-packet-generic 0.1.0 -> 0.2.0
* netlink-packet-route 0.8.0 -> 0.9.0
* netlink-packet-sock-diag 0.1.0 -> 0.2.0
* netlink-packet-utils 0.4.1
* netlink-proto 0.7.0 -> 0.8.0
* netlink-sys 0.7.0 -> 0.8.0
* rtnetlink 0.8.1 -> 0.9.0

### Breaking Changes

- `netlink-packet-route`:
- add `InfoBridge::VlanInfo` (https://github.com/little-dude/netlink/pull/212 https://github.com/little-dude/netlink/pull/213)
- `rtnetlink`:
- add `LinkGetRequest::match_name` to filter links by name more efficiently, and remove `LinkGetRequest::set_name_filter` (https://github.com/little-dude/netlink/pull/208)
- refactor `netlink_packet_core::traits::NetlinkSerializable` and `netlink_packet_core::trait::NetlinkDeserializable` such that they are not generic (https://github.com/little-dude/netlink/pull/195/, specifically https://github.com/little-dude/netlink/pull/195/commits/94c263282d9a34d01422513de6a7f683ac08addc)
- `netlink-proto`: Add new type parameter for `Connection` which represents the socket (https://github.com/little-dude/netlink/pull/195, specifically 944307ce292682283891f41db8a0ec4706419664)

### New Features

- new `netlink-packet-wireguard` crate for the wireguard netlink protocol (https://github.com/little-dude/netlink/pull/191)
- new `rich_nlas` feature for `netlink-packet-route` that enables parsing more message types (https://github.com/little-dude/netlink/pull/199 https://github.com/little-dude/netlink/pull/205)
- `rtnetlink`:
- add `NeighbourAddRequest::add_bridge` helper to create a bridge interface (https://github.com/little-dude/netlink/pull/203)
- allow the requests to be built with the `NLM_F_REPLACE` flag to optimize "create or update" operations (https://github.com/little-dude/netlink/pull/202)
- add helper to create macvlan links (https://github.com/little-dude/netlink/pull/194)

### Bug fixes

- fix UB in unsafe code (https://github.com/little-dude/netlink/pull/195/ specifically 7e6cfd743bf822e917e260eb24fbf5b2c541922e)
- fix `netlink_sys::SmolSocket::recv` error handling (https://github.com/little-dude/netlink/pull/195/ specifically 1cd3e0fbb8d77d6b9c4fe43b8c4aa745fa6ba66c)
- various fixes in the `netlink-proto` encoder (https://github.com/little-dude/netlink/pull/168)

## [20210927] 2021-09-27
### Versioning
* audit 0.4.0
Expand Down
2 changes: 1 addition & 1 deletion audit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "audit"
version = "0.5.0" # TODO: drop this comment - already bumped version for trait changes
version = "0.5.0"
authors = ["Corentin Henry <corentinhenry@gmail.com>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion ethtool/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ethtool"
version = "0.2.0" # TODO: drop this comment - already bumped version for trait changes
version = "0.2.0"
authors = ["Gris Ge <fge@redhat.com>"]
license = "MIT"
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion genetlink/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "genetlink"
version = "0.2.0" # TODO: drop this comment - already bumped version for trait changes
version = "0.2.0"
authors = ["Leo <leo881003@gmail.com>"]
edition = "2018"
homepage = "https://github.com/little-dude/netlink"
Expand Down
2 changes: 1 addition & 1 deletion netlink-packet-audit/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-audit"
version = "0.3.0" # TODO: drop this comment - already bumped version for trait changes
version = "0.3.0"
edition = "2018"

homepage = "https://github.com/little-dude/netlink"
Expand Down
2 changes: 1 addition & 1 deletion netlink-packet-core/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-core"
version = "0.3.0" # TODO: drop this comment - already bumped version for trait changes
version = "0.3.0"
edition = "2018"

homepage = "https://github.com/little-dude/netlink"
Expand Down
2 changes: 1 addition & 1 deletion netlink-packet-generic/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "netlink-packet-generic"
version = "0.2.0" # TODO: drop this comment - already bumped version for trait changes
version = "0.2.0"
authors = ["Leo <leo881003@gmail.com>"]
edition = "2018"
homepage = "https://github.com/little-dude/netlink"
Expand Down
2 changes: 1 addition & 1 deletion netlink-packet-sock-diag/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
authors = ["Flier Lu <flier.lu@gmail.com>", "Corentin Henry <corentinhenry@gmail.com>"]
name = "netlink-packet-sock-diag"
version = "0.2.0" # TODO: drop this comment - already bumped version for trait changes
version = "0.2.0"
edition = "2018"

homepage = "https://github.com/little-dude/netlink"
Expand Down
2 changes: 1 addition & 1 deletion netlink-proto/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-proto"
version = "0.8.0" # TODO: drop this comment - already bumped version for trait changes
version = "0.8.0"
edition = "2018"

homepage = "https://github.com/little-dude/netlink"
Expand Down
2 changes: 1 addition & 1 deletion netlink-sys/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-sys"
version = "0.8.0" # TODO: drop this comment - already bumped version for trait changes
version = "0.8.0"
edition = "2018"

homepage = "https://github.com/little-dude/netlink"
Expand Down
2 changes: 1 addition & 1 deletion rtnetlink/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rtnetlink"
version = "0.9.0" # TODO: drop this comment - already bumped version for trait changes
version = "0.9.0"
authors = ["Corentin Henry <corentinhenry@gmail.com>"]
edition = "2018"

Expand Down

0 comments on commit 309eccf

Please sign in to comment.