-
Notifications
You must be signed in to change notification settings - Fork 2
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
fix: bump contract and fix capabilities #17
Conversation
@@ -11,6 +11,8 @@ func AllCapabilities() []string { | |||
"cosmwasm_1_1", | |||
"cosmwasm_1_2", | |||
"cosmwasm_1_3", | |||
"cosmwasm_1_4", | |||
"cosmwasm_2_0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems cowsmwasm_2_0
implies all of the preceding ones. See the https://github.com/CosmWasm/cosmwasm/blob/main/MIGRATING.md#15x---20x bullets.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm it seems that we still need all of these -- it's the CW contract that the cosmwasm_2_0
feature implies the prior versions. If the chain wants to support CW contract with lower CW versions we still need those capabilities. Keeping them for now
tests/testdata/version.txt
Outdated
@@ -1 +1 @@ | |||
v0.7.0-rc.0 | |||
8d8734fd21795d160149bcfff759172f4a6874f9 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
v0.7.0-rc.2
just out of the oven.
Before merging: