2019-10-25 20:14:04 +00:00
<!--
Guiding Principles:
Changelogs are for humans, not machines.
There should be an entry for every single version.
The same types of changes should be grouped.
Versions and sections should be linkable.
The latest version comes first.
The release date of each version is displayed.
Mention whether you follow Semantic Versioning.
Usage:
Change log entries are to be added to the Unreleased section under the
appropriate stanza (see below). Each entry should ideally include a tag and
the Github issue reference in the following format:
2023-04-07 00:08:36 +00:00
* (< tag > ) #< issue-number > message
2019-10-25 20:14:04 +00:00
The issue numbers will later be link-ified during the release process so you do
not have to worry about including a link manually, but you can if you wish.
Types of changes (Stanzas):
"Features" for new features.
"Improvements" for changes in existing functionality.
"Deprecated" for soon-to-be removed features.
"Bug Fixes" for any bug fixes.
"Client Breaking" for breaking CLI commands and REST routes.
"State Machine Breaking" for breaking the AppState
Ref: https://keepachangelog.com/en/1.0.0/
-->
2019-10-15 19:14:58 +00:00
# Changelog
2023-04-07 00:08:36 +00:00
## [Unreleased]
2023-04-06 22:51:34 +00:00
2024-01-05 19:25:53 +00:00
### Features
- (cli) [#1785] Add `shard` CLI command to support creating partitions of data for standalone nodes
2024-01-24 22:10:07 +00:00
- (cdp) [#1814] Add module param and logic for running x/cdp begin blocker every `n` blocks
2024-01-19 18:17:13 +00:00
- (cli) [#1804] Add `rocksdb compact` command for manual DB compaction of state or blockstore.
2023-12-07 18:21:02 +00:00
## [v0.25.0]
2023-08-25 19:23:53 +00:00
### Features
2023-10-02 20:10:22 +00:00
2023-09-22 16:05:12 +00:00
- (community) [#1704] Add module params
2023-10-02 20:10:22 +00:00
- (community) [#1706] Add disable inflation upgrade
2023-10-11 17:22:25 +00:00
- (community) [#1745] Enable params update via governance with `MsgUpdateParams`
2023-12-13 17:17:37 +00:00
- (client) [#1784] Add Kava gRPC client
2023-08-25 19:23:53 +00:00
2023-07-24 23:00:19 +00:00
### Bug Fixes
2023-10-02 20:10:22 +00:00
2023-12-06 02:28:23 +00:00
- (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
2023-07-24 23:00:19 +00:00
- (evmutil) [#1655] Initialize x/evmutil module account in InitGenesis
2023-11-16 20:28:38 +00:00
cosmos ledger app 2.34.12
2023-07-24 23:00:19 +00:00
2023-09-22 16:05:12 +00:00
## State Machine Breaking
2023-10-02 20:10:22 +00:00
2023-09-22 16:05:12 +00:00
- (community) [#1704] Add param to control when inflation will be disabled
- (community) [#1707] Default staking rewards per second set to `744191`
2023-10-23 19:15:44 +00:00
- (community) [#1706] Add disable inflation upgrade to begin blocker that updates x/mint and x/kavadist params
2023-10-20 16:18:37 +00:00
- (community) [#1729] Consolidate community funds from `x/distribution` and `x/kavadist` to `x/community`
2023-10-23 19:15:44 +00:00
- (community) [#1752] Set `x/distribution` CommunityTax to zero on inflation disable upgrade
2023-10-25 16:17:11 +00:00
- (community) [#1755] Keep funds in `x/community` in `CommunityPoolLendWithdrawProposal` handler
2023-10-31 23:37:40 +00:00
- (staking) [#1761] Set validator minimum commission to 5% for all validators under 5%
2023-10-25 20:30:22 +00:00
2023-12-07 18:21:02 +00:00
## [v0.24.3]
### Bug Fixes
2024-01-24 22:10:07 +00:00
2023-12-07 18:21:02 +00:00
- (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]
2023-10-25 20:30:22 +00:00
### Features
2023-12-13 17:17:37 +00:00
2023-10-25 20:30:22 +00:00
- (metrics) [#1668] Adds non-state breaking x/metrics module for custom telemetry.
- (metrics) [#1669] Add performance timing metrics to all Begin/EndBlockers
- (community) [#1751] Add `AnnualizedRewards` query endpoint
2023-07-24 23:00:19 +00:00
## [v0.24.0]
2023-05-24 23:23:33 +00:00
### Features
2023-10-02 20:10:22 +00:00
2023-05-23 19:32:27 +00:00
- (evmutil) [#1590] & [#1596] Add allow list param of sdk native denoms that can be transferred to evm
- (evmutil) [#1591] & [#1596] Configure module to support deploying ERC20KavaWrappedCosmosCoin contracts
2023-05-24 23:23:33 +00:00
- (evmutil) [#1598] Track deployed ERC20 contract addresses for representing cosmos coins in module state
2023-05-30 19:00:01 +00:00
- (evmutil) [#1603] Add MsgConvertCosmosCoinToERC20 for converting an sdk.Coin to an ERC20 in the EVM
2023-05-30 20:06:46 +00:00
- (evmutil) [#1604] Emit events for MsgConvertCosmosCoinToERC20: `message` & `convert_cosmos_coin_to_erc20`
2023-06-02 18:23:52 +00:00
- (evmutil) [#1605] Add query for deployed ERC20 contracts representing Cosmos coins in the EVM
2023-06-02 21:26:51 +00:00
- (evmutil) [#1609] Add MsgConvertCosmosCoinFromERC20 for converting the ERC20 back to an sdk.Coin
2023-06-05 18:39:53 +00:00
- (evmutil) [#1610] Add new invariant checking that ERC20s are fully backed by sdk.Coins
2023-05-30 19:00:01 +00:00
### Client Breaking
2023-10-02 20:10:22 +00:00
2023-05-30 19:00:01 +00:00
- (evmutil) [#1603] Renamed error `ErrConversionNotEnabled` to `ErrEVMConversionNotEnabled`
2023-05-30 20:06:46 +00:00
- (evmutil) [#1604] Renamed event types
- `convert_erc20_to_coin` -> `convert_evm_erc20_to_coin`
- `convert_coin_to_erc20` -> `convert_evm_erc20_from_coin`
2023-06-05 20:26:02 +00:00
- (evmutil) [#1614] Renamed CLI commands for converting an EVM-native asset to sdk.Coin
NOTE: no changes were made to existing Msg names (`MsgConvertCoinToERC20` & `MsgConvertERC20ToCoin` )
- `convert-erc20-to-coin` -> `convert-evm-erc20-to-coin`
- `convert-coin-to-erc20` -> `convert-evm-erc20-from-coin`
2023-06-09 23:52:52 +00:00
- (cli) [#1624] Removes unused, no-op `migrate` CLI command.
### Bug Fixes
2023-05-19 23:01:46 +00:00
2023-10-02 20:10:22 +00:00
- (cli) [#1624] Fix `assert-invariants` CLI command.
2023-06-09 19:56:46 +00:00
## [v0.23.2]
### Bug Fixes
- (deps) [#1622] Bump tm-db to v0.6.7-kava.3 to return rocksdb open error
2023-05-15 21:15:49 +00:00
## [v0.23.0]
2023-04-07 00:08:36 +00:00
### Improvements
- (deps) [#1477] Bump Cosmos SDK to v0.46.10.
- (deps) [#1477] Bump Ethermint to v0.21.0.
- (deps) [#1477] Bump ibc-go to v6.1.0.
- (deps) [#1477] Migrate to CometBFT.
- (x/incentive) [#1512] Add grpc query service.
2023-04-11 17:05:35 +00:00
- (deps) [#1544] Bump confio/ics23/go to v0.9.0, cosmos/keyring to v1.2.0.
2023-04-18 19:31:43 +00:00
- (x/committee) [#1562] Add CommunityPoolLendWithdrawPermission
2023-04-20 23:08:53 +00:00
- (x/community) [#1563] Include x/community module pool balance in
x/distribution community_pool query response.
2023-04-20 21:13:16 +00:00
- (x/community) [#1565] Add CommunityCDPRepayDebtProposal
2023-04-20 21:42:11 +00:00
- (x/committee) [#1566] Add CommunityCDPRepayDebtPermission
2023-04-20 23:08:53 +00:00
- (x/community) [#1567] Add CommunityCDPWithdrawCollateralProposal
2023-04-21 00:13:02 +00:00
- (x/committee) [#1568] Add CommunityCDPWithdrawCollateralPermission
2023-04-07 00:08:36 +00:00
### Deprecated
- (x/validator-vesting) [#1542] Deprecate legacy circulating and total supply
2023-04-06 22:51:34 +00:00
rest endpoints.
2022-02-08 17:51:37 +00:00
2023-04-07 00:08:36 +00:00
### Client Breaking
- [#1477] Remove legacy REST endpoints.
- [#1519] Remove required denom path parameter from hard grpc query endpoints.
2023-04-13 16:42:01 +00:00
### Bug Fixes
- (x/incentive) [#1550] Fix validation on genesis reward accumulation time.
2023-08-16 21:11:10 +00:00
- (deps) [#1622] Bump tm-db to v0.6.7-kava.3 to return rocksdb open error
- (deps) [#1631] Bump cometbft to v0.34.27-kava.0 to avoid goleveldb panic on large
genesis files.
2023-04-13 16:42:01 +00:00
2023-04-07 00:08:36 +00:00
## [v0.16.1]
2022-02-08 17:51:37 +00:00
### State Machine Breaking
2023-04-07 00:08:36 +00:00
- [#1152] Fix MultiSpend Proposal With Async Upgrade Time
2022-02-08 17:51:37 +00:00
2023-04-07 00:08:36 +00:00
## [v0.16.0]
2022-02-08 17:51:37 +00:00
### State Machine Breaking
2023-04-07 00:08:36 +00:00
- [#1106] Upgrades app to cosmos-sdk v0.44.x and adds IBC and ICS-20 modules.
2022-02-08 17:51:37 +00:00
2021-03-01 05:05:30 +00:00
## [v0.13.0]
2023-04-07 00:08:36 +00:00
- Hard Protocol - Introduces borrowing functionality to HARD protocol. See full
[spec ](https://github.com/Kava-Labs/kava/tree/master/x/hard/spec )
2021-03-01 05:05:30 +00:00
### Breaking changes
2023-04-07 00:08:36 +00:00
- [#750] Update CDP liquidations to allow for liquidation by external keeper.
2021-03-01 05:05:30 +00:00
2023-04-07 00:08:36 +00:00
- [#751] Use accumulators for CDP interest accumulation.
2021-03-01 05:05:30 +00:00
2023-04-07 00:08:36 +00:00
- [#780] Moves HARD token distribution from `harvest` module to `incentive`
module. All HARD supply, borrow, and delegator reward objects and claims are
moved to the `incentive` module.
2021-03-01 05:05:30 +00:00
## [v0.12.0]
2023-04-07 00:08:36 +00:00
- [#701] Patch issue that prevented atomic swaps from completing successfully
2021-03-01 05:05:30 +00:00
## [v0.11.0]
2019-10-15 19:14:58 +00:00
2023-04-07 00:08:36 +00:00
- [#591] Add a `raw-params` cli method to query raw parameter values for use in
manual verification of gov proposals.
2020-06-23 13:17:08 +00:00
2023-04-07 00:08:36 +00:00
- [#596] Add REST client and CLI query to get module account information for the
CDP module
2020-06-19 19:30:10 +00:00
2023-04-07 00:08:36 +00:00
- [#590] Add CLI query to return kavadist module account balance
2020-06-17 13:04:16 +00:00
2023-04-07 00:08:36 +00:00
- [#584] Add REST client and CLI queries for `kavadist` module
2020-06-12 19:45:07 +00:00
2023-04-07 00:08:36 +00:00
- [#578] Add v0.3 compatible REST client that supports
2020-06-29 23:39:35 +00:00
2023-04-07 00:08:36 +00:00
- [#629] Add CDP collateral type as a field for CDPs and collateral parameters.
2020-08-21 19:42:46 +00:00
2023-04-07 00:08:36 +00:00
- [#658] Add harvest v1 and HARD token distribution schedule
2021-03-01 05:05:30 +00:00
2020-08-21 19:42:46 +00:00
### Breaking changes
2023-04-07 00:08:36 +00:00
- CDPs have an additional field, Type, which is a string that represents the
unique collateral type that this CDP holds. This enables, for example, a
single denom such as 'bnb' to have two CDP types, 'bnb-a' and 'bnb-b'.
- CollateralParam has an additional field, Type, which is a string that
represents the collateral type of CDPs that this collateral parameter governs.
It must be non-empty at genesis or when altering CDP fields. It is UNSAFE to
alter the type of an existing collateral param using unchain governance.
- CDP messages must specify the collateral type 'bnb-a', rather than the denom
of the cdp.
- In the incentive module, fields previously named `Denom` have been changed to
`CollateralType` . Previously, 'Denom' was validated to check that it satisfied
`sdk.ValidateDenom` , now, the validation checks that the `CollateralType` is
not blank.
- Incentive module messages now require the user to specify the collateral type
('bnb-a'), rather than the denom of the cdp ('bnb')
2020-08-21 19:42:46 +00:00
2020-06-29 23:39:35 +00:00
```plaintext
2020-06-12 19:37:18 +00:00
/v0_3/node_info
/v0_3/auth/accounts/< address >
/v0_3/< hash >
/v0_3/txs
/v0_3/staking/delegators/< address > /delegations
/v0_3/staking/delegators/< address > /unbonding_delegations
/v0_3/distribution/delegators/< address > /rewards
```
2020-02-13 01:04:57 +00:00
2023-04-07 00:08:36 +00:00
- [#598] CLI and REST queries for committee proposals (ie
`kvcli q committee proposal 1` ) now query the historical state to return the
proposal object before it was deleted from state
- [#625] The Cosmos SDK has been updated to v0.39.1. This brings with it several
breaking changes detailed
[in their changelog ](https://github.com/cosmos/cosmos-sdk/blob/v0.39.1/CHANGELOG.md ).
Notably account JSON serialization has been modified to use amino instead of
the Go stdlib, so numbers are serialized to strings, and public keys are no
longer encoded into bech32 strings. Also pruning config has changed:
`pruning=everything` and `pruning=nothing` still work but there are different
flags for custom pruning configuration.
## [v0.8.1] kava-3 Patch Release
This version mitigates a memory leak in tendermint that was found prior to
launching kava-3. It is fully compatible with v0.8.0 and is intended to replace
that version as the canonical software version for upgrading the Kava mainnet
from kava-2 to kava-3. Note that there are no breaking changes between the
versions, but a safety check was added to this version to prevent starting the
node with an unsafe configuration.
2019-10-29 20:24:33 +00:00
2020-06-12 19:37:18 +00:00
### Bugfix
2019-10-29 20:24:33 +00:00
2023-04-07 00:08:36 +00:00
The default tendermint pruning strategy, `pruning="syncable"` is currently
unsafe due to a [memory leak ](https://github.com/tendermint/iavl/issues/256 )
that can cause irrecoverable data loss. This patch release prevents `kvd` from
being started with the `pruning="syncable"` configuration. Until a patch for
tendermint is released, the ONLY pruning strategies that are safe to run are
`everything` (an archival node) or `nothing` (only the most recent state is
kept). It is strongly recommended that validators use `pruning="nothing"` for
kava-3. It is expected that a patch to tendermint will be released in a
non-breaking manner and that nodes will be able to update seamlessly after the
launch of kava-3.
The steps for upgrading to kava-3 can be found
[here ](https://github.com/Kava-Labs/kava/blob/v0.10.0/contrib/kava-3/migration.md ).
Please note the additional section on
[pruning ](https://github.com/Kava-Labs/kava/blob/v0.10.0/contrib/kava-3/migration.md#Pruning ).
## [v0.8.0] kava-3 Release
This version is intended to be the canonical software version for upgrading the
Kava mainnet from kava-2 to kava-3. As a result, no subsequent versions of Kava
will be released until kava-3 launches unless necessary due to critical
state-machine faults that require a new version to launch successfully.
2020-06-12 19:37:18 +00:00
### Migration
2023-04-07 00:08:36 +00:00
The steps for upgrading to kava-3 can be found
[here ](https://github.com/Kava-Labs/kava/blob/v0.10.0/contrib/kava-3/migration.md )
2020-06-12 19:37:18 +00:00
### Features
2023-04-07 00:08:36 +00:00
This is the first release that includes all the modules which comprise the
[CDP system ](https://docs.kava.io/ ).
2020-06-12 19:37:18 +00:00
### State Machine Breaking Changes
2023-04-07 00:08:36 +00:00
(sdk) Update Cosmos-SDK version to v0.38.4. To review cosmos-sdk changes, see
the [changelog ](https://github.com/cosmos/cosmos-sdk/blob/v0.38.4/CHANGELOG.md ).
2020-06-12 19:37:18 +00:00
2023-04-07 00:08:36 +00:00
## [v0.3.5]
2020-06-12 19:37:18 +00:00
2023-04-07 00:08:36 +00:00
- Bump tendermint version to 0.32.10 to address
[cosmos security advisory Lavender ](https://forum.cosmos.network/t/cosmos-mainnet-security-advisory-lavender/3511 )
2020-06-12 19:37:18 +00:00
2023-04-07 00:08:36 +00:00
## [v0.3.2]
2020-06-12 19:37:18 +00:00
2023-04-07 00:08:36 +00:00
- [#364] Use new BIP44 coin type in the CLI, retain support for the old one
through a flag.
2020-06-12 19:37:18 +00:00
2023-04-07 00:08:36 +00:00
## [v0.3.1]
2020-06-12 19:37:18 +00:00
2023-04-07 00:08:36 +00:00
- [#266] Bump tendermint version to 0.32.7 to address cosmos security advisory
[Periwinkle ](https://forum.cosmos.network/t/cosmos-mainnet-security-advisory-periwinkle/2911 )
2020-06-12 19:37:18 +00:00
2023-04-07 00:08:36 +00:00
## [v0.3.0]
2019-10-25 20:14:04 +00:00
2019-10-15 19:14:58 +00:00
### Features
2023-04-07 00:08:36 +00:00
- [#253] Add a new validator vesting account type, which releases coins on a
periodic vesting schedule based on if a specific validator signed sufficient
pre-commits. If the validator didn't sign enough pre-commits, the vesting
coins are burned or sent to a return address.
2019-10-29 20:24:33 +00:00
2023-04-07 00:08:36 +00:00
- [#260] Pin to cosmos-sdk commit #18de630 (tendermint 0.32.6)
2019-10-15 19:14:58 +00:00
### Improvements
2019-10-25 20:14:04 +00:00
2023-04-07 00:08:36 +00:00
- [#257 ](https://github.com/Kava-Labs/kava/pulls/257 ) Include scripts to run
large-scale simulations remotely using aws-batch
2024-01-19 18:17:13 +00:00
[#1804]: https://github.com/Kava-Labs/kava/pull/1804
2024-01-05 19:25:53 +00:00
[#1785]: https://github.com/Kava-Labs/kava/pull/1785
2023-12-13 17:17:37 +00:00
[#1784]: https://github.com/Kava-Labs/kava/pull/1784
2023-11-16 20:28:38 +00:00
[#1770]: https://github.com/Kava-Labs/kava/pull/1770
2023-10-25 16:17:11 +00:00
[#1755]: https://github.com/Kava-Labs/kava/pull/1755
2023-10-31 23:37:40 +00:00
[#1761]: https://github.com/Kava-Labs/kava/pull/1761
2023-10-23 19:15:44 +00:00
[#1752]: https://github.com/Kava-Labs/kava/pull/1752
2023-10-24 19:24:21 +00:00
[#1751]: https://github.com/Kava-Labs/kava/pull/1751
2023-10-11 17:22:25 +00:00
[#1745]: https://github.com/Kava-Labs/kava/pull/1745
2023-10-24 19:24:21 +00:00
[#1729]: https://github.com/Kava-Labs/kava/pull/1729
2023-09-22 16:05:12 +00:00
[#1707]: https://github.com/Kava-Labs/kava/pull/1707
2023-10-02 20:10:22 +00:00
[#1706]: https://github.com/Kava-Labs/kava/pull/1706
2023-10-23 19:15:44 +00:00
[#1704]: https://github.com/Kava-Labs/kava/pull/1704
2023-08-25 19:23:53 +00:00
[#1668]: https://github.com/Kava-Labs/kava/pull/1668
2023-08-25 22:14:35 +00:00
[#1669]: https://github.com/Kava-Labs/kava/pull/1669
2023-07-24 23:00:19 +00:00
[#1655]: https://github.com/Kava-Labs/kava/pull/1655
2023-06-09 23:52:52 +00:00
[#1624]: https://github.com/Kava-Labs/kava/pull/1624
2023-08-16 21:11:10 +00:00
[#1631]: https://github.com/Kava-Labs/kava/pull/1631
2023-06-09 19:56:46 +00:00
[#1622]: https://github.com/Kava-Labs/kava/pull/1622
2023-06-05 20:26:02 +00:00
[#1614]: https://github.com/Kava-Labs/kava/pull/1614
2023-06-05 18:39:53 +00:00
[#1610]: https://github.com/Kava-Labs/kava/pull/1610
2023-06-02 21:26:51 +00:00
[#1609]: https://github.com/Kava-Labs/kava/pull/1609
2023-06-02 18:23:52 +00:00
[#1605]: https://github.com/Kava-Labs/kava/pull/1605
2023-05-30 20:06:46 +00:00
[#1604]: https://github.com/Kava-Labs/kava/pull/1604
2023-05-30 19:00:01 +00:00
[#1603]: https://github.com/Kava-Labs/kava/pull/1603
2023-05-24 23:23:33 +00:00
[#1598]: https://github.com/Kava-Labs/kava/pull/1598
2023-05-23 19:32:27 +00:00
[#1596]: https://github.com/Kava-Labs/kava/pull/1596
2023-05-23 17:16:00 +00:00
[#1591]: https://github.com/Kava-Labs/kava/pull/1591
2023-05-19 23:01:46 +00:00
[#1590]: https://github.com/Kava-Labs/kava/pull/1590
2023-04-21 00:13:02 +00:00
[#1568]: https://github.com/Kava-Labs/kava/pull/1568
2023-04-20 23:08:53 +00:00
[#1567]: https://github.com/Kava-Labs/kava/pull/1567
2023-04-20 21:42:11 +00:00
[#1566]: https://github.com/Kava-Labs/kava/pull/1566
2023-04-20 21:13:16 +00:00
[#1565]: https://github.com/Kava-Labs/kava/pull/1565
2023-04-17 19:54:13 +00:00
[#1563]: https://github.com/Kava-Labs/kava/pull/1563
2023-04-18 19:31:43 +00:00
[#1562]: https://github.com/Kava-Labs/kava/pull/1562
[#1550]: https://github.com/Kava-Labs/kava/pull/1550
2023-04-11 17:05:35 +00:00
[#1544]: https://github.com/Kava-Labs/kava/pull/1544
2023-04-07 00:08:36 +00:00
[#1477]: https://github.com/Kava-Labs/kava/pull/1477
[#1512]: https://github.com/Kava-Labs/kava/pull/1512
[#1519]: https://github.com/Kava-Labs/kava/pull/1519
[#1106]: https://github.com/Kava-Labs/kava/pull/1106
[#1152]: https://github.com/Kava-Labs/kava/pull/1152
[#1542]: https://github.com/Kava-Labs/kava/pull/1542
[#253]: https://github.com/Kava-Labs/kava/pull/253
[#260]: https://github.com/Kava-Labs/kava/pull/260
[#266]: https://github.com/Kava-Labs/kava/pull/266
[#364]: https://github.com/Kava-Labs/kava/pull/364
[#590]: https://github.com/Kava-Labs/kava/pull/590
[#591]: https://github.com/Kava-Labs/kava/pull/591
[#596]: https://github.com/Kava-Labs/kava/pull/596
[#598]: https://github.com/Kava-Labs/kava/pull/598
[#625]: https://github.com/Kava-Labs/kava/pull/625
[#701]: https://github.com/Kava-Labs/kava/pull/701
[#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
2023-12-07 18:21:02 +00:00
[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
2023-07-24 23:00:19 +00:00
[v0.24.0]: https://github.com/Kava-Labs/kava/compare/v0.24.0...v0.23.2
2023-06-09 19:56:46 +00:00
[v0.23.2]: https://github.com/Kava-Labs/kava/compare/v0.23.1...v0.23.2
2023-05-15 21:15:49 +00:00
[v0.23.0]: https://github.com/Kava-Labs/kava/compare/v0.21.1...v0.23.0
2023-04-07 00:08:36 +00:00
[v0.16.1]: https://github.com/Kava-Labs/kava/compare/v0.16.0...v0.16.1
[v0.16.0]: https://github.com/Kava-Labs/kava/compare/v0.15.2...v0.16.0
[v0.13.0]: https://github.com/Kava-Labs/kava/compare/v0.12.4...v0.13.0
[v0.12.0]: https://github.com/Kava-Labs/kava/compare/v0.11.1...v0.12.0
[v0.11.0]: https://github.com/Kava-Labs/kava/compare/v0.10.0...v0.11.0
[v0.8.1]: https://github.com/Kava-Labs/kava/compare/v0.8.0...v0.8.1
[v0.8.0]: https://github.com/Kava-Labs/kava/compare/v0.7.0...v0.8.0
[v0.3.5]: https://github.com/Kava-Labs/kava/compare/v0.3.4...v0.3.5
[v0.3.2]: https://github.com/Kava-Labs/kava/compare/v0.3.1...v0.3.2
[v0.3.1]: https://github.com/Kava-Labs/kava/compare/v0.3.0...v0.3.1
[v0.3.0]: https://github.com/Kava-Labs/kava/compare/v0.2.0...v0.3.0