diff options
| author | Shulhan <ms@kilabit.info> | 2021-08-06 20:08:14 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2021-08-06 20:08:14 +0700 |
| commit | 594f90a0073aa20deb7971f68c63a23a3fbb31d6 (patch) | |
| tree | c50fe6ace2544518ff110faafc0d283373749837 | |
| parent | 7a94740956e9a018a81a8fb05dadbc9be4ef4810 (diff) | |
| download | pakakeh.go-594f90a0073aa20deb7971f68c63a23a3fbb31d6.tar.xz | |
Release share v0.29.1 (2021-08-06)v0.29.1
Revert the "lib/errors: return the internal error only if its not nil on
Unwrap".
Returning instance of e on Unwrap will cause recursive call.
The correct solution to convert an error to errors.E is by implementing
the As method.
| -rw-r--r-- | CHANGELOG.adoc | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index ae0bc5bd..ba110488 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -3,6 +3,17 @@ This library is released every month, usually at the first week of month. +== share v0.29.1 (2021-08-06) + +Revert the "lib/errors: return the internal error only if its not nil on +Unwrap". + +Returning instance of e on Unwrap will cause recursive call. + +The correct solution to convert an error to errors.E is by implementing the As +method. + + == share v0.29.0 (2021-08-06) === New feature |
