chore: prepare errors and store (alpha) releases (#16923)

This commit is contained in:
Julien Robert 2023-07-11 17:25:39 +02:00 committed by GitHub
parent 06edd92b4f
commit b18b6c4f7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 3 deletions

View File

@ -31,6 +31,8 @@ Ref: https://keepachangelog.com/en/1.0.0/
## [Unreleased]
## [v1.0.0](https://github.com/cosmos/cosmos-sdk/releases/tag/errors%2Fv1.0.0)
### Features
* [#15989](https://github.com/cosmos/cosmos-sdk/pull/15989) Add `ErrStopIterating` for modules to use for breaking out of iteration.

View File

@ -79,9 +79,7 @@ func writeSimpleFrame(s io.Writer, f errors.Frame) {
// Format works like pkg/errors, with additions.
// %s is just the error message
// %+v is the full stack trace
// %v appends a compressed [filename:line] where the error
//
// was created
// %v appends a compressed [filename:line] where the error was created
//
// Inspired by https://github.com/pkg/errors/blob/v0.8.1/errors.go#L162-L176
func (e *wrappedError) Format(s fmt.State, verb rune) {

View File

@ -25,6 +25,8 @@ Ref: https://keepachangelog.com/en/1.0.0/
## [Unreleased]
## [v0.1.0-alpha.2](https://github.com/cosmos/cosmos-sdk/releases/tag/store%2Fv0.1.0-alpha.2) - 2023-07-11
### Features
* [#15568](https://github.com/cosmos/cosmos-sdk/pull/15568) Migrate the `iavl` to the new key format.