Skip to content
Merged
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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## v1.7.0 (2026-04-21)

### Feat

- **delay**: new `Delay[T comparable]` queue. Elements become dequeuable at a deadline computed by a caller-supplied function at `Offer` time; `Get` errors until the head is due, `GetWait` sleeps until it is. Built on a typed min-heap by deadline; zero-alloc steady-state offer/get.

### Docs

- README: add a "Choosing a queue" decision table, a Quick start snippet, a Features bullet list, a prominent pkg.go.dev link, and Contributing / Security / License sections.
- README: fix inconsistencies across the per-queue examples (variable naming, indentation, `Println` vs `Printf`).

## v1.6.0 (2026-04-21)

### Fix
Expand Down
Loading