diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c4284ecd7..192147ed55 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,27 @@ ## [Unreleased](https://github.com/CosmWasm/wasmd/tree/HEAD) -[Full Changelog](https://github.com/CosmWasm/wasmd/compare/v0.25.0...master) +[Full Changelog](https://github.com/CosmWasm/wasmd/compare/v0.26.0...HEAD) + +## [v0.26.0](https://github.com/CosmWasm/wasmd/tree/v0.26.0) (2022-04-21) + +[Full Changelog](https://github.com/CosmWasm/wasmd/compare/v0.25.0...v0.26.0) + +**Fixed bugs:** + +- Unpack contract details from genesis [\#802](https://github.com/CosmWasm/wasmd/pull/802) + +**Closed issues:** + +- Issue Updating uploadAccess Param [\#804](https://github.com/CosmWasm/wasmd/issues/804) +- Add tx query to wasmd QueryPlugins for smart contract [\#788](https://github.com/CosmWasm/wasmd/issues/788) + +**Merged pull requests:** + +- Disable stargate queries [\#812](https://github.com/CosmWasm/wasmd/pull/812) +- Gov param change examples [\#805](https://github.com/CosmWasm/wasmd/pull/805) +- Create link to SECURITY.md in other repo [\#801](https://github.com/CosmWasm/wasmd/pull/801) +- Tests some event edge cases [\#799](https://github.com/CosmWasm/wasmd/pull/799) ## [v0.25.0](https://github.com/CosmWasm/wasmd/tree/v0.25.0) (2022-04-06) diff --git a/README.md b/README.md index 8bbda133ef..e2189d1fe5 100644 --- a/README.md +++ b/README.md @@ -24,25 +24,27 @@ A VM can support one or more contract-VM interface versions. The interface version is communicated by the contract via a Wasm export. This is the current compatibility list: -| wasmd | cosmwasm-vm | cosmwasm-std | -| ----- | ----------- | ------------ | -| 0.24 | 1.0.0-beta7 | 1.0 | -| 0.23 | 1.0.0-beta5 | 1.0 | -| 0.22 | 1.0.0-beta5 | 1.0 | -| 0.21 | 1.0.0-beta2 | 1.0 | -| 0.20 | 1.0.0-beta | 1.0 | -| 0.19 | 0.16 | 0.16 | -| 0.18 | 0.16 | 0.16 | -| 0.17 | 0.14 | 0.14 | -| 0.16 | 0.14 | 0.14 | -| 0.15 | 0.13 | 0.11-0.13 | -| 0.14 | 0.13 | 0.11-0.13 | -| 0.13 | 0.12 | 0.11-0.13 | -| 0.12 | 0.12 | 0.11-0.13 | -| 0.11 | 0.11 | 0.11-0.13 | -| 0.10 | 0.10 | 0.10 | -| 0.9 | 0.9 | 0.9 | -| 0.8 | 0.8 | 0.8 | +| wasmd | wasmvm | cosmwasm-vm | cosmwasm-std | +| ----- | ------------ | ----------- | ------------ | +| 0.26 | 1.0.0-beta10 | | 1.0 | +| 0.25 | 1.0.0-beta10 | | 1.0 | +| 0.24 | 1.0.0-beta7 | 1.0.0-beta6 | 1.0 | +| 0.23 | | 1.0.0-beta5 | 1.0 | +| 0.22 | | 1.0.0-beta5 | 1.0 | +| 0.21 | | 1.0.0-beta2 | 1.0 | +| 0.20 | | 1.0.0-beta | 1.0 | +| 0.19 | | 0.16 | 0.16 | +| 0.18 | | 0.16 | 0.16 | +| 0.17 | | 0.14 | 0.14 | +| 0.16 | | 0.14 | 0.14 | +| 0.15 | | 0.13 | 0.11-0.13 | +| 0.14 | | 0.13 | 0.11-0.13 | +| 0.13 | | 0.12 | 0.11-0.13 | +| 0.12 | | 0.12 | 0.11-0.13 | +| 0.11 | | 0.11 | 0.11-0.13 | +| 0.10 | | 0.10 | 0.10 | +| 0.9 | | 0.9 | 0.9 | +| 0.8 | | 0.8 | 0.8 | Note: `cosmwasm_std v1.0` means it supports contracts compiled by any `v1.0.0-betaX` or `1.0.x`. It will also run contracts compiled with 1.x assuming they don't opt into any newer features.