Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/clippy-rustfmt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ jobs:
run: cargo fmt --all -- --check

- name: clippy-tokio-socket
run: cargo clippy
run: cargo clippy -- -D warnings

- name: clippy-smol-socket
run: cargo clippy --no-default-features --features smol_socket
run: >
cargo clippy --no-default-features
--features smol_socket -- -D warnings
10 changes: 10 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
# Changelog
## [0.2.9] - 2025-08-28
### Breaking changes
- N/A

### New features
- Support channel get/set. (c64872a)

### Bug fixes
- Use latest rust-netlink crates. (39a1702)

## [0.2.8] - 2025-03-11
### Breaking changes
- N/A
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ethtool"
version = "0.2.8"
version = "0.2.9"
authors = ["Gris Ge <fge@redhat.com>"]
license = "MIT"
edition = "2021"
Expand Down