Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add compatibility of wasmd v0.2 #113

Merged
merged 2 commits into from
Jan 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
### Build, CI

### Document Updates
* [\#113](https://github.com/Finschia/wasmd/pull/113) add compatibility of wasmd v0.2


## [v0.2.0](https://github.com/Finschia/wasmd/releases/tag/v0.2.0) - 2023.10.19
Expand Down
49 changes: 25 additions & 24 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,30 +24,31 @@ 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:

| Finschia/wasmd | cosmwasm/wasmd | Finschia/wasmvm | cosmwasm/wasmvm | cosmwasm-vm | cosmwasm-std |
|----------------|----------------|:----------------|-----------------|-------------|--------------|
| | 0.29 | | v1.1.0 | | 1.0-1.1 |
| | 0.28 | | v1.0.0 | | 1.0-1.1 |
| 0.1 | 0.27 | v1.0.0-0.10.0 | v1.0.0 | | 1.0 |
| | 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 |
| Finschia/wasmd | cosmwasm/wasmd | Finschia/wasmvm | cosmwasm/wasmvm | Finschia/cosmwasm-vm | Finschia/cosmwasm-std | cosmwasm/cosmwasm-vm | cosmwasm/cosmwasm-std |
|----------------|----------------|-----------------|-----------------|----------------------|-----------------------|----------------------|-----------------------|
| 0.2 | 0.29.1 | v1.1.1-0.11.6 | v1.1.1 | | 1.1.9+0.8.1 | | 1.1.9 |
| | 0.29 | | v1.1.0 | | | | 1.0-1.1 |
| | 0.28 | | v1.0.0 | | | | 1.0-1.1 |
| 0.1 | 0.27 | v1.0.0-0.10.0 | v1.0.0 | | | | 1.0 |
| | 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.
Expand Down