Skip to content

Commit

Permalink
Merge pull request #34 from multiversx/release-2
Browse files Browse the repository at this point in the history
release: multiversx-chain-vm-executor 0.2.0
  • Loading branch information
andrei-marinica authored Oct 12, 2023
2 parents b464a6e + 6d86ac0 commit b258aa1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 16 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
14 changes: 1 addition & 13 deletions 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 All @@ -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"

0 comments on commit b258aa1

Please sign in to comment.