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
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ All notable changes to this project will be documented in this file.

## Unreleased

## v0.7.3

### New features

* Add `event::AutoResetEvent`, a reusable signal that releases one waiter, retains at most one unassigned signal that can be cleared with `reset`, and transfers assigned signals when waits are cancelled.
Expand All @@ -47,7 +49,7 @@ All notable changes to this project will be documented in this file.
* Finish releasing buffered bounded MPSC messages even if one message destructor panics.
* Improve unbounded MPSC throughput with batched receiving and incremental storage reclamation; empty-buffer retention is bounded independently of previous peak occupancy.
* Make completed and abandoned `Completion` waits lock-free while preserving cancellable pending registration.
* Reduce allocations when notifying waiters in Barrier, broadcast, condvar, event, MPSC, phaser, and watch.
* Reduce allocations when notifying waiters in Barrier, broadcast, condvar, event, MPSC, and watch.

## v0.7.2 (2026-09-11)

Expand Down
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 asyncband/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[package]
name = "asyncband"
version = "0.7.2"
version = "0.7.3"

categories = ["asynchronous", "concurrency"]
description = "Composable, runtime-agnostic concurrency building blocks for async Rust."
Expand Down