Skip to content

Commit

Permalink
Merge pull request #456 from CosmWasm/release-1-4
Browse files Browse the repository at this point in the history
Release 1.4
  • Loading branch information
chipshort authored Sep 4, 2023
2 parents 7c2a35d + 2e221f0 commit 7b7ece6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 14 deletions.
18 changes: 9 additions & 9 deletions libwasmvm/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions libwasmvm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmvm"
version = "1.4.0-rc.1"
version = "1.4.0"
publish = false
authors = ["Ethan Frey <[email protected]>"]
edition = "2021"
Expand All @@ -26,8 +26,8 @@ default = []
backtraces = []

[dependencies]
cosmwasm-std = { git = "https://github.com/CosmWasm/cosmwasm.git", rev = "v1.4.0-rc.1", features = ["staking", "stargate", "iterator"] }
cosmwasm-vm = { git = "https://github.com/CosmWasm/cosmwasm.git", rev = "v1.4.0-rc.1", features = ["staking", "stargate", "iterator"] }
cosmwasm-std = { git = "https://github.com/CosmWasm/cosmwasm.git", rev = "v1.4.0", features = ["staking", "stargate", "iterator"] }
cosmwasm-vm = { git = "https://github.com/CosmWasm/cosmwasm.git", rev = "v1.4.0", features = ["staking", "stargate", "iterator"] }
errno = "0.2"
serde_json = "1.0.91"
thiserror = "1.0.38"
Expand Down
2 changes: 0 additions & 2 deletions libwasmvm/src/calls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,6 @@ fn do_call_2_args(
// We only check this result after reporting gas usage and returning the instance into the cache.
let res = vm_fn(&mut instance, arg1, arg2);
*gas_report = instance.create_gas_report().into();
instance.recycle();
Ok(res?)
}

Expand Down Expand Up @@ -582,7 +581,6 @@ fn do_call_3_args(
// We only check this result after reporting gas usage and returning the instance into the cache.
let res = vm_fn(&mut instance, arg1, arg2, arg3);
*gas_report = instance.create_gas_report().into();
instance.recycle();
Ok(res?)
}

Expand Down

0 comments on commit 7b7ece6

Please sign in to comment.