diff --git a/CHANGELOG.md b/CHANGELOG.md index 125676c..e6fad3e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ This file contains a centralizes a trace of all published crate versions, with their changes in short. +## [multiversx-chain-vm-executor 0.2.0] - 2023-10-12 +- New VM hook: `managedGetBackTransfers`. +- Memory fix. + ## [multiversx-chain-vm-executor 0.1.0] - 2023-06-15 This is the initial official release of the VM executor interface. The purpose is for it to be used in the new smart contract debugger architecture. diff --git a/vm-executor-wasmer/Cargo.toml b/vm-executor-wasmer/Cargo.toml index fb82b3c..b4ad51f 100644 --- a/vm-executor-wasmer/Cargo.toml +++ b/vm-executor-wasmer/Cargo.toml @@ -1,14 +1,16 @@ [package] name = "multiversx-chain-vm-executor-wasmer" -version = "0.1.0" +version = "0.2.0" edition = "2021" publish = false # will also be published, but it is not yet ready for that [lib] -[dependencies] -multiversx-chain-vm-executor = { path = "../vm-executor" } +[dependencies.multiversx-chain-vm-executor] +version = "0.2.0" +path = "../vm-executor" +[dependencies] wasmer = { git = "https://github.com/multiversx/wasmer", rev = "cdd1550", default-features = false, features = [ "singlepass", "sys", diff --git a/vm-executor/Cargo.toml b/vm-executor/Cargo.toml index 7bd865a..af6a208 100644 --- a/vm-executor/Cargo.toml +++ b/vm-executor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "multiversx-chain-vm-executor" -version = "0.1.0" +version = "0.2.0" edition = "2021" authors = [ @@ -19,15 +19,3 @@ categories = ["cryptography::cryptocurrencies"] [lib] -[dependencies] -enumset = "1.0" -cfg-if = "1.0" -lazy_static = "1.4" -libc = { version = "^0.2", default-features = false } -serde = { version = "1", optional = true, features = ["derive"] } -thiserror = "1" -typetag = { version = "0.1", optional = true } -paste = "1.0" -anyhow = "1.0" -env_logger = "0.8.4" -log = "0.4.14"