diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index d713b7d6..e71479ff 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -1,3 +1,3 @@ { - ".": "0.151.5" + ".": "0.151.6" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 77a74779..a212634b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.151.6](https://github.com/matter-labs/zksync-protocol/compare/v0.151.5...v0.151.6) (2025-04-15) + + +### Features + +* ec precompiles ([#92](https://github.com/matter-labs/zksync-protocol/issues/92)) ([49ae070](https://github.com/matter-labs/zksync-protocol/commit/49ae070cfcdddc8896349c0ecc325f35c03def5d)) + ## [0.151.5](https://github.com/matter-labs/zksync-protocol/compare/v0.151.4...v0.151.5) (2025-04-02) diff --git a/Cargo.lock b/Cargo.lock index e9bddf04..9676b06e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -331,7 +331,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "circuit_definitions" -version = "0.151.5" +version = "0.151.6" dependencies = [ "circuit_encodings", "crossbeam", @@ -343,7 +343,7 @@ dependencies = [ [[package]] name = "circuit_encodings" -version = "0.151.5" +version = "0.151.6" dependencies = [ "derivative", "serde", @@ -353,7 +353,7 @@ dependencies = [ [[package]] name = "circuit_sequencer_api" -version = "0.151.5" +version = "0.151.6" dependencies = [ "derivative", "rayon", @@ -2432,7 +2432,7 @@ checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" [[package]] name = "zk_evm" -version = "0.151.5" +version = "0.151.6" dependencies = [ "anyhow", "hex", @@ -2446,7 +2446,7 @@ dependencies = [ [[package]] name = "zk_evm_abstractions" -version = "0.151.5" +version = "0.151.6" dependencies = [ "anyhow", "hex", @@ -2458,7 +2458,7 @@ dependencies = [ [[package]] name = "zkevm-assembly" -version = "0.151.5" +version = "0.151.6" dependencies = [ "env_logger 0.9.3", "hex", @@ -2476,7 +2476,7 @@ dependencies = [ [[package]] name = "zkevm_circuits" -version = "0.151.5" +version = "0.151.6" dependencies = [ "arrayvec 0.7.6", "boojum", @@ -2496,7 +2496,7 @@ dependencies = [ [[package]] name = "zkevm_opcode_defs" -version = "0.151.5" +version = "0.151.6" dependencies = [ "bitflags 2.9.0", "blake2 0.10.6", @@ -2512,7 +2512,7 @@ dependencies = [ [[package]] name = "zkevm_test_harness" -version = "0.151.5" +version = "0.151.6" dependencies = [ "bincode", "circuit_definitions", @@ -2602,7 +2602,7 @@ dependencies = [ [[package]] name = "zksync_kzg" -version = "0.151.5" +version = "0.151.6" dependencies = [ "boojum", "derivative", diff --git a/Cargo.toml b/Cargo.toml index 97f2f66c..13382edd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ resolver = "2" [workspace.package] # All the packages in the workspace should have the same version -version = "0.151.5" # x-release-please-version +version = "0.151.6" # x-release-please-version edition = "2021" authors = ["The Matter Labs Team "] homepage = "https://zksync.io/" @@ -16,16 +16,16 @@ keywords = ["blockchain", "zksync"] categories = ["cryptography"] [workspace.dependencies] -circuit_definitions = { version = "=0.151.5", path = "crates/circuit_definitions" } -circuit_encodings = { version = "=0.151.5", path = "crates/circuit_encodings" } -circuit_sequencer_api = { version = "=0.151.5", path = "crates/circuit_sequencer_api" } -kzg = { version = "=0.151.5", path = "crates/kzg", package = "zksync_kzg" } -zk_evm = { version = "=0.151.5", path = "crates/zk_evm" } -zk_evm_abstractions = { version = "=0.151.5", path = "crates/zk_evm_abstractions" } -zkevm_circuits = { version = "=0.151.5", path = "crates/zkevm_circuits" } -zkevm_opcode_defs = { version = "=0.151.5", path = "crates/zkevm_opcode_defs" } -zkevm_test_harness = { version = "=0.151.5", path = "crates/zkevm_test_harness" } -zkevm-assembly = { version = "=0.151.5", path = "crates/zkEVM-assembly" } +circuit_definitions = { version = "=0.151.6", path = "crates/circuit_definitions" } +circuit_encodings = { version = "=0.151.6", path = "crates/circuit_encodings" } +circuit_sequencer_api = { version = "=0.151.6", path = "crates/circuit_sequencer_api" } +kzg = { version = "=0.151.6", path = "crates/kzg", package = "zksync_kzg" } +zk_evm = { version = "=0.151.6", path = "crates/zk_evm" } +zk_evm_abstractions = { version = "=0.151.6", path = "crates/zk_evm_abstractions" } +zkevm_circuits = { version = "=0.151.6", path = "crates/zkevm_circuits" } +zkevm_opcode_defs = { version = "=0.151.6", path = "crates/zkevm_opcode_defs" } +zkevm_test_harness = { version = "=0.151.6", path = "crates/zkevm_test_harness" } +zkevm-assembly = { version = "=0.151.6", path = "crates/zkEVM-assembly" } # `zksync-crypto` repository snark_wrapper = "=0.32.0"