From 89045457ed72f65b837036259178663f08293582 Mon Sep 17 00:00:00 2001 From: Luke Yue Date: Mon, 11 May 2026 00:02:13 +0800 Subject: [PATCH] chore: release v0.4.2 --- CHANGELOG.md | 24 ++++++++++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f77a2e..c24ce60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.2](https://github.com/RDMA-Rust/sideway/compare/v0.4.1...v0.4.2) - 2026-05-10 + +### Added + +- *(examples)* display more fields in ibv_devinfo +- *(ibverbs)* expose raw device_attr and port_attr handles +- *(ibverbs)* expose extended device attribute getters +- *(ibverbs)* add atomic compare-and-swap and fetch-and-add operations +- *(ibverbs)* add QP state transition tables for UC, UD and Raw Packet +- Adding ibv_query_rt_values_ex verb + +### Fixed + +- *(ibverbs)* fix integration tests failing on InfiniBand link layer +- *(ibverbs)* prevent segfault when ibv_create_qp_ex fail to create qp +- *(ibverbs)* propagate configured qp_type in QueuePairBuilder::build + +### Other + +- return Option from RealTimeValues::raw_clock +- Renaming Rt to RealTime +- Update src/ibverbs/device_context.rs +- Adding ibv_query_rt_values_ex verb + ## [0.4.1](https://github.com/RDMA-Rust/sideway/compare/v0.4.0...v0.4.1) - 2026-03-09 ### Fixed diff --git a/Cargo.toml b/Cargo.toml index 7963168..f526e32 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sideway" -version = "0.4.1" +version = "0.4.2" description = "A better wrapper for using RDMA programming APIs in Rust flavor" license= "MPL-2.0" repository = "https://github.com/RDMA-Rust/sideway"