Skip to content
This repository was archived by the owner on Nov 20, 2025. It is now read-only.

Commit b5637ec

Browse files
committed
Release xdp 0.6.0
1 parent 1f0c9d3 commit b5637ec

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
<!-- next-header -->
1010
## [Unreleased] - ReleaseDate
11+
## [0.6.0] - 2025-03-04
1112
### Changed
1213
- [PR#16](https://github.com/Jake-Shadle/xdp/pull/16) changed `RxRing` and `TxRing` to use the new `slab::Slab` trait.
1314
- [PR#16](https://github.com/Jake-Shadle/xdp/pull/16) moved `HeapSlab` to the new `slab` module, and made it implement `slab::Slab`, changing it so that items are always pushed to the front and popped from the back, unlike the previous implementation which allowed both.
@@ -76,7 +77,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7677
- Initial crate squat
7778

7879
<!-- next-url -->
79-
[Unreleased]: https://github.com/Jake-Shadle/xdp/compare/0.5.0...HEAD
80+
[Unreleased]: https://github.com/Jake-Shadle/xdp/compare/0.6.0...HEAD
81+
[0.6.0]: https://github.com/Jake-Shadle/xdp/compare/0.5.0...0.6.0
8082
[0.5.0]: https://github.com/Jake-Shadle/xdp/compare/0.4.0...0.5.0
8183
[0.4.0]: https://github.com/Jake-Shadle/xdp/compare/0.3.0...0.4.0
8284
[0.3.0]: https://github.com/Jake-Shadle/xdp/compare/0.2.0...0.3.0

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "xdp"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
edition = "2024"
55
description = "AF_XDP socket support without C dependencies"
66
license = "Apache-2.0 OR MIT"
@@ -27,5 +27,5 @@ members = [
2727

2828
[workspace.dependencies]
2929
test-utils = { version = "0.1.0", path = "./crates/test-utils" }
30-
xdp = { version = "0.5.0", path = ".", features = ["__debug"] }
30+
xdp = { version = "0.6.0", path = ".", features = ["__debug"] }
3131
etherparse = "0.17"

0 commit comments

Comments
 (0)