From 272077eeba6ff1e4ff5041dea14016e7da1f1a77 Mon Sep 17 00:00:00 2001 From: Julien Robert Date: Sun, 11 Sep 2022 16:21:48 +0200 Subject: [PATCH] docs: prepare cosmovisor 1.3.0 release (#13235) --- cosmovisor/CHANGELOG.md | 11 +++++++++-- cosmovisor/README.md | 4 ++-- cosmovisor/RELEASE_NOTES.md | 4 +--- 3 files changed, 12 insertions(+), 7 deletions(-) diff --git a/cosmovisor/CHANGELOG.md b/cosmovisor/CHANGELOG.md index 6d43e6af6..e9e24249b 100644 --- a/cosmovisor/CHANGELOG.md +++ b/cosmovisor/CHANGELOG.md @@ -36,10 +36,17 @@ Ref: https://keepachangelog.com/en/1.0.0/ ## [Unreleased] -* [#13221](https://github.com/cosmos/cosmos-sdk/pull/13221) Fix `go install`. +## v1.3.0 2022-09-11 + +### Improvements + * [#12921](https://github.com/cosmos/cosmos-sdk/pull/12918) Add documentation about expected plan path name. * [#12918](https://github.com/cosmos/cosmos-sdk/pull/12918) Automatically set version using module version. +### Bug Fixes + +* [#13221](https://github.com/cosmos/cosmos-sdk/pull/13221) Fix `go install`. + ## v1.2.0 2022-07-26 ### Features @@ -49,7 +56,7 @@ Ref: https://keepachangelog.com/en/1.0.0/ * [\#11823](https://github.com/cosmos/cosmos-sdk/pull/11823) Refactor `cosmovisor` CLI to use `cobra`. * [\#11731](https://github.com/cosmos/cosmos-sdk/pull/11731) `cosmovisor version -o json` returns the cosmovisor version and the result of `simd --output json --long` in one JSON object. -### Bugfix +### Bug Fixes * [\#12005](https://github.com/cosmos/cosmos-sdk/pull/12005) Fix cosmovisor binary usage for pre-upgrade diff --git a/cosmovisor/README.md b/cosmovisor/README.md index f9f0ddb78..41610b26e 100644 --- a/cosmovisor/README.md +++ b/cosmovisor/README.md @@ -35,13 +35,13 @@ Cosmovisor is designed to be used as a wrapper for a `Cosmos SDK` app: Cosmovisor is part of the Cosmos SDK monorepo, but it's a separate module with it's own release schedule. -Release branches have the following format `release/cosmovisor/vA.B.x`, where A and B are a number (e.g. `release/cosmovisor/v1.2.x`). Releases are tagged using the following format: `cosmovisor/vA.B.C`. +Release branches have the following format `release/cosmovisor/vA.B.x`, where A and B are a number (e.g. `release/cosmovisor/v1.3.x`). Releases are tagged using the following format: `cosmovisor/vA.B.C`. ## Setup ### Installation -You can download Cosmovisor from the [Github releases](https://github.com/cosmos/cosmos-sdk/releases/tag/cosmovisor%2Fv1.2.1). +You can download Cosmovisor from the [GitHub releases](https://github.com/cosmos/cosmos-sdk/releases/tag/cosmovisor%2Fv1.3.0). To install the latest version of `cosmovisor`, run the following command: diff --git a/cosmovisor/RELEASE_NOTES.md b/cosmovisor/RELEASE_NOTES.md index 0dfc92540..828eee43b 100644 --- a/cosmovisor/RELEASE_NOTES.md +++ b/cosmovisor/RELEASE_NOTES.md @@ -1,6 +1,4 @@ -# Cosmovisor v1.2.1 Release Notes - -### Bug Fixes +# Cosmovisor v1.3.0 Release Notes * Fix failure when installing cosmovisor via `go install`.