Skip to content

Commit 6d86ac0

Browse files
release: multiversx-chain-vm-executor 0.2.0
1 parent ff574aa commit 6d86ac0

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
This file contains a centralizes a trace of all published crate versions, with their changes in short.
44

5+
## [multiversx-chain-vm-executor 0.2.0] - 2023-10-12
6+
- New VM hook: `managedGetBackTransfers`.
7+
- Memory fix.
8+
59
## [multiversx-chain-vm-executor 0.1.0] - 2023-06-15
610
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.
711

vm-executor-wasmer/Cargo.toml

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
[package]
22
name = "multiversx-chain-vm-executor-wasmer"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
publish = false # will also be published, but it is not yet ready for that
66

77
[lib]
88

9-
[dependencies]
10-
multiversx-chain-vm-executor = { path = "../vm-executor" }
9+
[dependencies.multiversx-chain-vm-executor]
10+
version = "0.2.0"
11+
path = "../vm-executor"
1112

13+
[dependencies]
1214
wasmer = { git = "https://github.com/multiversx/wasmer", rev = "cdd1550", default-features = false, features = [
1315
"singlepass",
1416
"sys",

vm-executor/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "multiversx-chain-vm-executor"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55

66
authors = [

0 commit comments

Comments
 (0)