From b18b6c4f7a64dc085ee712159fd07d42661ba124 Mon Sep 17 00:00:00 2001 From: Julien Robert Date: Tue, 11 Jul 2023 17:25:39 +0200 Subject: [PATCH] chore: prepare errors and store (alpha) releases (#16923) --- errors/CHANGELOG.md | 2 ++ errors/stacktrace.go | 4 +--- store/CHANGELOG.md | 2 ++ 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/errors/CHANGELOG.md b/errors/CHANGELOG.md index 74f3430558..f49d3c8e6d 100644 --- a/errors/CHANGELOG.md +++ b/errors/CHANGELOG.md @@ -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. diff --git a/errors/stacktrace.go b/errors/stacktrace.go index 7453284dd3..d7021085db 100644 --- a/errors/stacktrace.go +++ b/errors/stacktrace.go @@ -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) { diff --git a/store/CHANGELOG.md b/store/CHANGELOG.md index 6e1b7210fa..2a9dcc792f 100644 --- a/store/CHANGELOG.md +++ b/store/CHANGELOG.md @@ -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.