-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🤖 I have created a release *beep* *boop* --- ## [0.3.0](v0.2.1...v0.3.0) (2025-01-27) ### ⚠ BREAKING CHANGES * Remove EVM emulator gas stipend ([#82](#82)) * Revise VM storage interface ([#73](#73)) ### Features * Allow customizing precompiles logic ([#79](#79)) ([3841f5a](3841f5a)) * allow tracers to stop/suspend execution ([#78](#78)) ([457d8a7](457d8a7)) * expose storage to tracers ([#77](#77)) ([df5bec3](df5bec3)) ### Bug Fixes * **ci:** Update github-hosted runner label ([#80](#80)) ([70a6e30](70a6e30)) * failing far call tracing ([#81](#81)) ([5df8c33](5df8c33)) * Remove EVM emulator gas stipend ([#82](#82)) ([bf63339](bf63339)) * Revise VM storage interface ([#73](#73)) ([a233d44](a233d44)) --- 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 <[email protected]>
- Loading branch information
1 parent
bf63339
commit 8749ff9
Showing
4 changed files
with
29 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
".": "0.2.1" | ||
".": "0.3.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ members = [ | |
resolver = "2" | ||
|
||
[workspace.package] | ||
version = "0.2.1" | ||
version = "0.3.0" | ||
edition = "2021" | ||
authors = ["The Matter Labs Team <[email protected]>"] | ||
homepage = "https://zksync.io/" | ||
|
@@ -35,8 +35,8 @@ zk_evm_abstractions = "0.150.0" | |
zk_evm = "0.150.5" | ||
|
||
# Dependencies within the workspace | ||
zksync_vm2_interface = { version = "0.2.1", path = "crates/vm2-interface" } | ||
zksync_vm2 = { version = "0.2.1", path = "crates/vm2" } | ||
zksync_vm2_interface = { version = "0.3.0", path = "crates/vm2-interface" } | ||
zksync_vm2 = { version = "0.3.0", path = "crates/vm2" } | ||
|
||
[workspace.lints.rust] | ||
missing_docs = "warn" | ||
|