diff --git a/CHANGELOG.md b/CHANGELOG.md index cc2c09b1..9175e383 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,6 +36,9 @@ Ref: https://keepachangelog.com/en/1.0.0/ ## [Unreleased] + +## [v0.25.0] + ### Features - (community) [#1704] Add module params @@ -46,9 +49,7 @@ Ref: https://keepachangelog.com/en/1.0.0/ - (ethermint) [#1788] Fixes issue where tracing a transaction could show it's status as successful when isolated in simulation even if the tx when executed on the chain failed due to an error such as exhausting the block gas meter - (evmutil) [#1655] Initialize x/evmutil module account in InitGenesis -- (deps) [#1770] Bump ledger-cosmos-go to v0.13.1 to resolve signing error with cosmos ledger app 2.34.12 -- (rockdb) [#1776] Fix resolution of rocksdb database path ## State Machine Breaking @@ -60,7 +61,15 @@ Ref: https://keepachangelog.com/en/1.0.0/ - (community) [#1755] Keep funds in `x/community` in `CommunityPoolLendWithdrawProposal` handler - (staking) [#1761] Set validator minimum commission to 5% for all validators under 5% -## [v0.24.1](https://github.com/Kava-Labs/kava/releases/tag/v0.24.1) +## [v0.24.3] + +### Bug Fixes +- (deps) [#1770] Bump ledger-cosmos-go to v0.13.1 to resolve signing error with +- (rocksdb) [#1767] Fix resolution of rocksdb database path introduced in v0.24.2 + +**Note**: There was a bug released as v0.24.2. The tag has been removed and the commit should not be used. + +## [v0.24.1] ### Features - (metrics) [#1668] Adds non-state breaking x/metrics module for custom telemetry. @@ -360,7 +369,10 @@ the [changelog](https://github.com/cosmos/cosmos-sdk/blob/v0.38.4/CHANGELOG.md). [#750]: https://github.com/Kava-Labs/kava/pull/750 [#751]: https://github.com/Kava-Labs/kava/pull/751 [#780]: https://github.com/Kava-Labs/kava/pull/780 -[unreleased]: https://github.com/Kava-Labs/kava/compare/v0.24.0...HEAD +[unreleased]: https://github.com/Kava-Labs/kava/compare/v0.25.0...HEAD +[v0.25.0]: https://github.com/Kava-Labs/kava/compare/v0.25.0...v0.24.3 +[v0.24.3]: https://github.com/Kava-Labs/kava/compare/v0.24.3...v0.24.1 +[v0.24.1]: https://github.com/Kava-Labs/kava/compare/v0.24.1...v0.24.0 [v0.24.0]: https://github.com/Kava-Labs/kava/compare/v0.24.0...v0.23.2 [v0.23.2]: https://github.com/Kava-Labs/kava/compare/v0.23.1...v0.23.2 [v0.23.1]: https://github.com/Kava-Labs/kava/compare/v0.23.0...v0.23.1 diff --git a/README.md b/README.md index a644abc9..42b8a251 100644 --- a/README.md +++ b/README.md @@ -24,13 +24,13 @@ Reference implementation of Kava, a blockchain for cross-chain DeFi. Built using ## Mainnet -The current recommended version of the software for mainnet is [v0.24.1](https://github.com/Kava-Labs/kava/releases/tag/v0.24.1). The master branch of this repository often contains considerable development work since the last mainnet release and is __not__ runnable on mainnet. +The current recommended version of the software for mainnet is [v0.25.0](https://github.com/Kava-Labs/kava/releases/tag/v0.25.0) The master branch of this repository often contains considerable development work since the last mainnet release and is __not__ runnable on mainnet. ### Installation and Setup For detailed instructions see [the Kava docs](https://docs.kava.io/docs/participate/validator-node). ```bash -git checkout v0.24.1 +git checkout v0.25.0 make install ```