diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index 7a6ec0ca..b45f7d38 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -1,3 +1,3 @@ { - ".": "0.151.2" + ".": "0.151.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 5eadbc7d..2a63421e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.151.3](https://github.com/matter-labs/zksync-protocol/compare/v0.151.2...v0.151.3) (2025-02-20) + + +### Features + +* compatibility for old memory model ([#129](https://github.com/matter-labs/zksync-protocol/issues/129)) ([75ed663](https://github.com/matter-labs/zksync-protocol/commit/75ed6637883c6a17834244eef3f57faac3ae3904)) + ## [0.151.2](https://github.com/matter-labs/zksync-protocol/compare/v0.151.1...v0.151.2) - 2025-02-10 ### Fixed diff --git a/Cargo.toml b/Cargo.toml index 8ff98857..b03aca88 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.2" # x-release-please-version +version = "0.151.3" # 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.2", path = "crates/circuit_definitions" } -circuit_encodings = { version = "=0.151.2", path = "crates/circuit_encodings" } -circuit_sequencer_api = { version = "=0.151.2", path = "crates/circuit_sequencer_api" } -kzg = { version = "=0.151.2", path = "crates/kzg", package = "zksync_kzg" } -zk_evm = { version = "=0.151.2", path = "crates/zk_evm" } -zk_evm_abstractions = { version = "=0.151.2", path = "crates/zk_evm_abstractions" } -zkevm_circuits = { version = "=0.151.2", path = "crates/zkevm_circuits" } -zkevm_opcode_defs = { version = "=0.151.2", path = "crates/zkevm_opcode_defs" } -zkevm_test_harness = { version = "=0.151.2", path = "crates/zkevm_test_harness" } -zkevm-assembly = { version = "=0.151.2", path = "crates/zkEVM-assembly" } +circuit_definitions = { version = "0.151.3", path = "crates/circuit_definitions" } +circuit_encodings = { version = "0.151.3", path = "crates/circuit_encodings" } +circuit_sequencer_api = { version = "0.151.3", path = "crates/circuit_sequencer_api" } +kzg = { version = "0.151.3", path = "crates/kzg", package = "zksync_kzg" } +zk_evm = { version = "0.151.3", path = "crates/zk_evm" } +zk_evm_abstractions = { version = "0.151.3", path = "crates/zk_evm_abstractions" } +zkevm_circuits = { version = "0.151.3", path = "crates/zkevm_circuits" } +zkevm_opcode_defs = { version = "0.151.3", path = "crates/zkevm_opcode_defs" } +zkevm_test_harness = { version = "0.151.3", path = "crates/zkevm_test_harness" } +zkevm-assembly = { version = "0.151.3", path = "crates/zkEVM-assembly" } # `zksync-crypto` repository snark_wrapper = "=0.31.0"