diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f6c393e..fdc0e96a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [v0.16.4](https://github.com/CosmWasm/cw-multi-test/tree/v0.16.4) (2023-04-12) + +[Full Changelog](https://github.com/CosmWasm/cw-multi-test/compare/v0.16.3...v0.16.4) + +**Closed issues:** + +- Staking rewards accrue differently when redelegated [\#30](https://github.com/CosmWasm/cw-multi-test/issues/30) + +**Merged pull requests:** + +- Staking rewards fix [\#34](https://github.com/CosmWasm/cw-multi-test/pull/34) ([chipshort](https://github.com/chipshort)) + ## [v0.16.3](https://github.com/CosmWasm/cw-multi-test/tree/v0.16.3) (2023-04-06) [Full Changelog](https://github.com/CosmWasm/cw-multi-test/compare/v0.16.2...v0.16.3) diff --git a/Cargo.lock b/Cargo.lock index e6023c58..41358bfc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -236,7 +236,7 @@ dependencies = [ [[package]] name = "cw-multi-test" -version = "0.16.3" +version = "0.16.4" dependencies = [ "anyhow", "cosmwasm-std", diff --git a/Cargo.toml b/Cargo.toml index 476763cf..4ca5e467 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cw-multi-test" -version = "0.16.3" +version = "0.16.4" authors = ["Ethan Frey "] edition = "2021" description = "Test helpers for multi-contract interactions"