From 709d6676940d0858c8af7e7f10de28025138aa6a Mon Sep 17 00:00:00 2001 From: zksync-era-bot <147085853+zksync-era-bot@users.noreply.github.com> Date: Wed, 25 Sep 2024 14:55:10 +0400 Subject: [PATCH] chore(master): release 0.2.1 (#71) :robot: I have created a release *beep* *boop* --- ## [0.2.1](https://github.com/matter-labs/vm2/compare/v0.2.0...v0.2.1) (2024-09-25) ### Bug Fixes * some methods operating on wrong near call ([#69](https://github.com/matter-labs/vm2/issues/69)) ([9b36813](https://github.com/matter-labs/vm2/commit/9b36813ec6b4201396049f65b087c0bbf27d9ea2)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --------- Co-authored-by: zksync-era-bot --- .github/release-please/manifest.json | 2 +- CHANGELOG.md | 7 +++++++ Cargo.lock | 6 +++--- Cargo.toml | 6 +++--- 4 files changed, 14 insertions(+), 7 deletions(-) diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index 2be9c43..af55ef0 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -1,3 +1,3 @@ { - ".": "0.2.0" + ".": "0.2.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 98b77d4..10a633e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.2.1](https://github.com/matter-labs/vm2/compare/v0.2.0...v0.2.1) (2024-09-25) + + +### Bug Fixes + +* some methods operating on wrong near call ([#69](https://github.com/matter-labs/vm2/issues/69)) ([9b36813](https://github.com/matter-labs/vm2/commit/9b36813ec6b4201396049f65b087c0bbf27d9ea2)) + ## [0.2.0](https://github.com/matter-labs/vm2/compare/v0.1.0...v0.2.0) (2024-09-23) diff --git a/Cargo.lock b/Cargo.lock index 0408dc1..d248649 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1446,7 +1446,7 @@ dependencies = [ [[package]] name = "zksync_vm2" -version = "0.2.0" +version = "0.2.1" dependencies = [ "anyhow", "arbitrary", @@ -1462,7 +1462,7 @@ dependencies = [ [[package]] name = "zksync_vm2_afl_fuzz" -version = "0.2.0" +version = "0.2.1" dependencies = [ "afl", "arbitrary", @@ -1474,7 +1474,7 @@ dependencies = [ [[package]] name = "zksync_vm2_interface" -version = "0.2.0" +version = "0.2.1" dependencies = [ "primitive-types", ] diff --git a/Cargo.toml b/Cargo.toml index 295e2d2..248059a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ members = [ resolver = "2" [workspace.package] -version = "0.2.0" +version = "0.2.1" edition = "2021" authors = ["The Matter Labs Team "] homepage = "https://zksync.io/" @@ -36,8 +36,8 @@ zk_evm_abstractions = "0.150.0" zk_evm = { git = "https://github.com/matter-labs/era-zk_evm.git", rev = "b7caa02acc2119b2994730d92c8cb6b861f56484" } # Dependencies within the workspace -zksync_vm2_interface = { version = "0.2.0", path = "crates/vm2-interface" } -zksync_vm2 = { version = "0.2.0", path = "crates/vm2" } +zksync_vm2_interface = { version = "0.2.1", path = "crates/vm2-interface" } +zksync_vm2 = { version = "0.2.1", path = "crates/vm2" } [workspace.lints.rust] missing_docs = "warn"