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
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,23 @@ aims to follow [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.2.1] - 2026-07-11

### Changed

- Route the driver's runtime diagnostics (submit-error, CQ-overflow,
bounded-drain, shutdown-timeout) through `tracing` with structured fields
instead of `eprintln!`, unifying with the RustFS tracing pipeline for
filterable observability. The panic-abort barrier keeps its direct `stderr`
write, since a subscriber may not flush before `abort()`.
write, since a subscriber may not flush before `abort()`. ([#13])

### Docs

- Rewrote the README from the current public API — all three read entry points
(`read_at`, `read_at_direct`, `read_current`) and the degradation contract —
and trimmed it to a lean front page: the per-invariant rationale lives inline
in the module and function docs, not duplicated in prose. Removed the
`docs/DESIGN.md` design notes for a single source of truth.
`docs/DESIGN.md` design notes for a single source of truth. ([#13])

## [0.2.0] - 2026-07-11

Expand Down Expand Up @@ -219,9 +221,11 @@ built. They are listed so nobody re-opens them without new evidence.
[#5]: https://github.com/rustfs/uring/pull/5
[#6]: https://github.com/rustfs/uring/pull/6
[#11]: https://github.com/rustfs/uring/pull/11
[#13]: https://github.com/rustfs/uring/pull/13
[rustfs/backlog#1051]: https://github.com/rustfs/backlog/issues/1051
[rustfs/backlog#1144]: https://github.com/rustfs/backlog/issues/1144
[rustfs/backlog#1159]: https://github.com/rustfs/backlog/issues/1159
[Unreleased]: https://github.com/rustfs/uring/compare/0.2.0...HEAD
[Unreleased]: https://github.com/rustfs/uring/compare/0.2.1...HEAD
[0.2.1]: https://github.com/rustfs/uring/compare/0.2.0...0.2.1
[0.2.0]: https://github.com/rustfs/uring/compare/0.1.0...0.2.0
[0.1.0]: https://github.com/rustfs/uring/releases/tag/0.1.0
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

[package]
name = "rustfs-uring"
version = "0.2.0"
version = "0.2.1"
edition = "2024"
rust-version = "1.96"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ When a caller drops the future of an in-flight read (an erasure-code quorum was

```toml
[target.'cfg(target_os = "linux")'.dependencies]
rustfs-uring = "0.2.0"
rustfs-uring = "0.2.1"
```

## Usage
Expand Down