diff --git a/RELEASES.md b/RELEASES.md index 0fd3410b7c..d0e3ca3ddf 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -7,7 +7,7 @@ The Cosmos-SDK follows both [0ver](https://0ver.org/) and [Semver](https://semve Although we adhere to semantic versioning (semver), we have introduced a few modifications to accommodate the unique characteristics of blockchains. One significant divergence is that the major version (Y.x.x) is incremented solely when a consensus-breaking change occurs. On the other hand, the minor version (x.Y.x) is increased when there is a non-consensus-breaking alteration that also results in an incompatible API change. Patch versions will be bumped for all other changes that dont break the API nor Consensus.

- Releases Semver decision tree + Releases Semver decision tree

## 0ver Dependencies @@ -15,5 +15,5 @@ Although we adhere to semantic versioning (semver), we have introduced a few mod In terms of the Cosmos-SDK dependency, we adhere to a simpler versioning approach known as 0ver. This flow differs from the previous Semver flow. Under this system, when a consensus-breaking change or an API-breaking change occurs, the Cosmos-SDK team increments the minor version (x.Y.x). Conversely, when a non-consensus-breaking change and a non-API-breaking change take place, the team bumps the patch version (x.x.Y).

- Releases 0ver decision tree + Releases 0ver decision tree

diff --git a/0ver.png b/docs/static/img/0ver.png similarity index 100% rename from 0ver.png rename to docs/static/img/0ver.png diff --git a/semver.png b/docs/static/img/semver.png similarity index 100% rename from semver.png rename to docs/static/img/semver.png diff --git a/tools/cosmovisor/README.md b/tools/cosmovisor/README.md index 730e4a2dc4..808c286df0 100644 --- a/tools/cosmovisor/README.md +++ b/tools/cosmovisor/README.md @@ -52,10 +52,10 @@ To install the latest version of `cosmovisor`, run the following command: go install cosmossdk.io/tools/cosmovisor/cmd/cosmovisor@latest ``` -To install a previous version, you can specify the version: +To install a specific version, you can specify the version: ```shell -go install github.com/cosmos/cosmos-sdk/cosmovisor/cmd/cosmovisor@v1.5.0 +go install cosmossdk.io/tools/cosmovisor/cmd/cosmovisor@v1.5.0 ``` Run `cosmovisor version` to check the cosmovisor version. diff --git a/tools/cosmovisor/RELEASE_NOTES.md b/tools/cosmovisor/RELEASE_NOTES.md index 6896b7a566..e840af68b7 100644 --- a/tools/cosmovisor/RELEASE_NOTES.md +++ b/tools/cosmovisor/RELEASE_NOTES.md @@ -1,3 +1,9 @@ # Cosmovisor v1.5.0 Release Notes See the [CHANGELOG](https://github.com/cosmos/cosmos-sdk/blob/tools/cosmovisor/v1.5.0/tools/cosmovisor/CHANGELOG.md) for details on the changes in v1.5.0. + +## Installation instructions + +```go +go install cosmossdk.io/tools/cosmovisor/cmd/cosmovisor@latest +```