diff --git a/errors/CHANGELOG.md b/errors/CHANGELOG.md index 9678589ad8c2..4d563a90b876 100644 --- a/errors/CHANGELOG.md +++ b/errors/CHANGELOG.md @@ -31,10 +31,12 @@ Ref: https://keepachangelog.com/en/1.0.0/ ## [Unreleased] -### API Breaking +## [v2.0.0](https://github.com/cosmos/cosmos-sdk/releases/tag/errors/%2Fv2.0.0) + +### API Breaking Changes * [#20402](https://github.com/cosmos/cosmos-sdk/pull/20402) Remove Grpc error codes from the error package. This is done in order to keep the dependency graph of errors minimal -* [#20539](https://github.com/cosmos/cosmos-sdk/pull/20539) v2 errors removes `IsOf`, `Recover`, `WithType` and wrapped error. The errors package uses the go std library errors. It provides a `Wrap` and `Wrapf` to help in the migration from v1 to v2. +* [#20539](https://github.com/cosmos/cosmos-sdk/pull/20539) Removes `IsOf`, `Recover`, `WithType` and wrapped error. The errors package uses the go std library errors. It provides a `Wrap` and `Wrapf` to help in the migration from v1 to v2. ## [v1.0.1](https://github.com/cosmos/cosmos-sdk/releases/tag/errors%2Fv1.0.1) diff --git a/errors/go.mod b/errors/go.mod index 20ae1c3f4a92..f057227f20ad 100644 --- a/errors/go.mod +++ b/errors/go.mod @@ -1,3 +1,5 @@ module cosmossdk.io/errors/v2 +// NOTE: this go.mod should have zero dependencies. + go 1.20