From 11f46a0bae582de5c81c51557245796d23930e4f Mon Sep 17 00:00:00 2001 From: Larry Engineer <26318510+larry0x@users.noreply.github.com> Date: Wed, 4 Jan 2023 08:31:36 +0000 Subject: [PATCH] docs: use an array of strings as authors in proposal metadata (#14472) --- CHANGELOG.md | 1 + x/gov/README.md | 2 +- x/group/README.md | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cde4ea819f..be4912ec03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -60,6 +60,7 @@ Ref: https://keepachangelog.com/en/1.0.0/ * (client/tx) [#13670](https://github.com/cosmos/cosmos-sdk/pull/13670) Add validation in `BuildUnsignedTx` to prevent simple inclusion of valid mnemonics * [#13473](https://github.com/cosmos/cosmos-sdk/pull/13473) ADR-038: Go plugin system proposal * [#14356](https://github.com/cosmos/cosmos-sdk/pull/14356) Add `events.GetAttributes` and `event.GetAttribute` methods to simplify the retrieval of an attribute from event(s). +* [#14472](https://github.com/cosmos/cosmos-sdk/pull/14356) The recommended metadata format for x/gov and x/group proposals now uses an array of strings (instead of a single string) for the `authors` field. ### Improvements diff --git a/x/gov/README.md b/x/gov/README.md index dd1ed16788..7adaac894d 100644 --- a/x/gov/README.md +++ b/x/gov/README.md @@ -2590,7 +2590,7 @@ Location: off-chain as json object stored on IPFS (mirrors [group proposal](../g ```json { "title": "", - "authors": "", + "authors": [""], "summary": "", "details": "", "proposal_forum_url": "", diff --git a/x/group/README.md b/x/group/README.md index edbbc34867..8243038eae 100644 --- a/x/group/README.md +++ b/x/group/README.md @@ -2099,7 +2099,7 @@ Location: off-chain as json object stored on IPFS (mirrors [gov proposal](../gov ```json { "title": "", - "authors": "", + "authors": [""], "summary": "", "details": "", "proposal_forum_url": "",