From 6d86ac0581fc9fba9b7ee0c915dfced682b72757 Mon Sep 17 00:00:00 2001 From: Andrei Marinica Date: Thu, 12 Oct 2023 17:25:42 +0300 Subject: [PATCH] release: multiversx-chain-vm-executor 0.2.0 --- CHANGELOG.md | 4 ++++ vm-executor-wasmer/Cargo.toml | 8 +++++--- vm-executor/Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) 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 2d1988a..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 = [