Skip to content

Commit f2443f8

Browse files
authored
Merge pull request #1701 from CosmWasm/w4
Update to wasmer 4
2 parents 7943fa8 + afc610a commit f2443f8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+689
-661
lines changed

.circleci/config.yml

Lines changed: 75 additions & 75 deletions
Large diffs are not rendered by default.

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Install Rust
3434
uses: actions-rs/toolchain@v1
3535
with:
36-
toolchain: 1.64.0
36+
toolchain: 1.67.0
3737
target: wasm32-unknown-unknown
3838
profile: minimal
3939
override: true

.mergify.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ pull_request_rules:
1313
- "status-success=macOS"
1414
- "status-success=Windows"
1515
- "status-success=ci/circleci: arm64"
16-
- "status-success=ci/circleci: clippy-1.60.0"
16+
- "status-success=ci/circleci: clippy-1.67.0"
1717
- "status-success=ci/circleci: clippy-1.68.2"
1818
- "status-success=ci/circleci: contract_burner"
1919
- "status-success=ci/circleci: contract_crypto_verify"

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ and this project adheres to
4242
- cosmwasm-vm: Add `Instance::set_debug_handler`/`unset_debug_handler` to allow
4343
customizing the handling of debug messages emitted by the contract ([#1667]).
4444
- cosmwasm-vm: Add `.wasm` extension to stored wasm files ([#1686]).
45-
- cosmwasm-vm: Upgrade Wasmer to version 3.3.0.
45+
- cosmwasm-vm: Upgrade Wasmer to version 4.0.0.
4646
- cosmwasm-check: Update clap dependency to version 4 ([#1677])
4747
- cosmwasm-std: Coin uses shorter `Coin { 123 "ucosm" }` format for Debug
4848
([#1704])

Cargo.lock

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

contracts/burner/Cargo.lock

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

contracts/crypto-verify/Cargo.lock

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

contracts/crypto-verify/src/contract.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ mod tests {
396396
source: RecoverPubkeyError::UnknownErr { .. },
397397
..
398398
} => {}
399-
err => panic!("Unexpected error: {:?}", err),
399+
err => panic!("Unexpected error: {err:?}"),
400400
}
401401
}
402402

contracts/crypto-verify/src/ethereum.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,7 @@ pub fn get_recovery_param_with_chain_id(v: u64, chain_id: u64) -> StdResult<u8>
8888
match recovery {
8989
0 | 1 => Ok(recovery as u8),
9090
_ => Err(StdError::generic_err(format!(
91-
"Calculated recovery parameter must be 0 or 1 but is {}.",
92-
recovery
91+
"Calculated recovery parameter must be 0 or 1 but is {recovery}."
9392
))),
9493
}
9594
}

0 commit comments

Comments
 (0)