From 8165d0f8225da082a5b3330c8bacf358aa210f2b Mon Sep 17 00:00:00 2001 From: Hedzr Yeh Date: Fri, 29 Sep 2023 20:29:50 +0800 Subject: [PATCH] bump to v3.1.9 Signed-off-by: Hedzr Yeh --- CHANGELOG | 5 +++++ README.md | 5 +++++ doc.go | 4 ++-- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 029773d..2af8d8d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,10 @@ # CHANGELOG +- v3.1.9 + - fixed error.Is deep test to check two errors' message text contents if matched + - fixed errors.v3.Join when msg is not empty in an err obj + - fixed causes.WithErrors(): err obj has been ignored even if its message is not empty + - v3.1.6 - improved/fixed the formatting algorithm on error object - added more builtin error codes, such as IllegalState diff --git a/README.md b/README.md index ffe5a55..d3370c3 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,11 @@ Wrapped errors and more for golang developing (not just for go1.11, go1.13, and ## History +- v3.1.9 + - fixed error.Is deep test to check two errors' message text contents if matched + - fixed errors.v3.Join when msg is not empty in an err obj + - fixed causes.WithErrors(): err obj has been ignored even if its message is not empty + - v3.1.6 - improved/fixed the formatting algorithm on error object - added more builtin error codes, such as IllegalState diff --git a/doc.go b/doc.go index 1a793e6..5b6a823 100644 --- a/doc.go +++ b/doc.go @@ -10,7 +10,7 @@ const ( // AppName const AppName = "errors" // Version const - Version = "3.1.6" + Version = "3.1.9" // VersionInt const - VersionInt = 0x030106 + VersionInt = 0x030109 )