Skip to content

Commit

Permalink
release: multiversx-chain-vm-executor 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-marinica committed Oct 12, 2023
1 parent ff574aa commit 6d86ac0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
8 changes: 5 additions & 3 deletions vm-executor-wasmer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion vm-executor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "multiversx-chain-vm-executor"
version = "0.1.0"
version = "0.2.0"
edition = "2021"

authors = [
Expand Down

0 comments on commit 6d86ac0

Please sign in to comment.