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
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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<Duration> from RealTimeValues::raw_clock
- Renaming Rt to RealTime
- Update src/ibverbs/device_context.rs
- Adding ibv_query_rt_values_ex verb
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

This changelog entry is a duplicate of the one under the ### Added section on line 14. To avoid confusion and keep the changelog clean, this duplicate entry should be removed.


## [0.4.1](https://github.com/RDMA-Rust/sideway/compare/v0.4.0...v0.4.1) - 2026-03-09

### Fixed
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 = "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"
Expand Down
Loading