Skip to content

Commit 8eab448

Browse files
chore(master): release 0.7.0 (#132)
🤖 I have created a release *beep* *boop* --- ## [0.7.0](v0.6.4...v0.7.0) (2026-08-24) ### ⚠ BREAKING CHANGES * **decommit:** `WorldDiff::decommit_opcode()` now returns `DecommitOpcodeOutcome` instead of `(Vec<u8>, bool)`. The `Cached` variant carries the `HeapId` of the page that already holds the code, and the bytecode is fetched only on the `Fresh` path. ### Performance Improvements * **decommit:** don't re-fetch bytecode on a repeated `decommit` ([#130](#130)) ([44b1e32](44b1e32)) --- 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: matterlabs-bots[bot] <149179806+matterlabs-bots[bot]@users.noreply.github.com>
1 parent 44b1e32 commit 8eab448

4 files changed

Lines changed: 18 additions & 7 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.6.4"
2+
".": "0.7.0"
33
}

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## [0.7.0](https://github.com/matter-labs/vm2/compare/v0.6.4...v0.7.0) (2026-08-24)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* **decommit:** `WorldDiff::decommit_opcode()` now returns `DecommitOpcodeOutcome` instead of `(Vec<u8>, bool)`. The `Cached` variant carries the `HeapId` of the page that already holds the code, and the bytecode is fetched only on the `Fresh` path.
9+
10+
### Performance Improvements
11+
12+
* **decommit:** don't re-fetch bytecode on a repeated `decommit` ([#130](https://github.com/matter-labs/vm2/issues/130)) ([44b1e32](https://github.com/matter-labs/vm2/commit/44b1e327bbeddcd84c2561310383e61c06e6b025))
13+
314
## [0.6.4](https://github.com/matter-labs/vm2/compare/v0.6.3...v0.6.4) (2026-08-24)
415

516

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ members = [
99
resolver = "2"
1010

1111
[workspace.package]
12-
version = "0.6.4" # x-release-please-version
12+
version = "0.7.0" # x-release-please-version
1313
edition = "2021"
1414
authors = ["The Matter Labs Team <hello@matterlabs.dev>"]
1515
homepage = "https://zksync.io/"
@@ -35,8 +35,8 @@ zk_evm_abstractions = { git = "https://github.com/matter-labs/zksync-protocol",
3535
zk_evm = { git = "https://github.com/matter-labs/zksync-protocol", tag = "v0.153.15" }
3636

3737
# Dependencies within the workspace
38-
zksync_vm2_interface = { version = "=0.6.4", path = "crates/vm2-interface" }
39-
zksync_vm2 = { version = "=0.6.4", path = "crates/vm2" }
38+
zksync_vm2_interface = { version = "=0.7.0", path = "crates/vm2-interface" }
39+
zksync_vm2 = { version = "=0.7.0", path = "crates/vm2" }
4040

4141
[workspace.lints.rust]
4242
missing_docs = "warn"

0 commit comments

Comments
 (0)