From de75ae527b39a27afcb50a84427ec7b84021d5f4 Mon Sep 17 00:00:00 2001 From: Sung Yoon Whang Date: Wed, 29 Mar 2023 16:00:37 -0700 Subject: [PATCH] Release v1.11.0 (#79) This prepares release for v1.11.0 which contains: * support for `Errors` on any error that implements the multiple-error interface specified by standard library starting from Go 1.20. * `Every`, which checks whether all errors in the error chain satisfies the `errors.Is` comparison against the target error. --- CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ba87531..f8177b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,12 @@ Releases ======== -Unreleased +v1.11.0 (2023-03-28) ==================== - `Errors` now supports any error that implements multiple-error interface. +- Add `Every` function to allow checking if all errors in the chain + satisfies `errors.Is` against the target error. v1.10.0 (2023-03-08) ====================