From 10f05556501c4a0e407a0b4658e67bad700c1d17 Mon Sep 17 00:00:00 2001 From: adrianbrad Date: Tue, 21 Apr 2026 12:02:33 +0300 Subject: [PATCH] docs(changelog): v1.7.0 --- CHANGELOG.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f19e07..5080ae3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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