diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index e029712..956bf95 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -1,3 +1,3 @@ { - ".": "0.150.16" + ".": "0.150.17" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d649ea..2fd356e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.150.17](https://github.com/matter-labs/zksync-protocol/compare/v0.150.16...v0.150.17) (2024-12-04) + + +### Bug Fixes + +* **zkevm_circuits:** make zkevm_circuits compile with newest nightly rust ([#77](https://github.com/matter-labs/zksync-protocol/issues/77)) ([1aebbbe](https://github.com/matter-labs/zksync-protocol/commit/1aebbbe9e4b186b0539280c5923314f1d6b9973e)) + ## [0.150.16](https://github.com/matter-labs/zksync-protocol/compare/v0.150.15...v0.150.16) (2024-11-21) diff --git a/Cargo.toml b/Cargo.toml index 446f323..198125f 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.150.16" +version = "0.150.17" 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.150.16", path = "crates/circuit_definitions" } -circuit_encodings = { version = "=0.150.16", path = "crates/circuit_encodings" } -circuit_sequencer_api = { version = "=0.150.16", path = "crates/circuit_sequencer_api" } -kzg = { version = "=0.150.16", path = "crates/kzg", package = "zksync_kzg" } -zk_evm = { version = "=0.150.16", path = "crates/zk_evm" } -zk_evm_abstractions = { version = "=0.150.16", path = "crates/zk_evm_abstractions" } -zkevm_circuits = { version = "=0.150.16", path = "crates/zkevm_circuits" } -zkevm_opcode_defs = { version = "=0.150.16", path = "crates/zkevm_opcode_defs" } -zkevm_test_harness = { version = "=0.150.16", path = "crates/zkevm_test_harness" } -zkevm-assembly = { version = "=0.150.16", path = "crates/zkEVM-assembly" } +circuit_definitions = { version = "=0.150.17", path = "crates/circuit_definitions" } +circuit_encodings = { version = "=0.150.17", path = "crates/circuit_encodings" } +circuit_sequencer_api = { version = "=0.150.17", path = "crates/circuit_sequencer_api" } +kzg = { version = "=0.150.17", path = "crates/kzg", package = "zksync_kzg" } +zk_evm = { version = "=0.150.17", path = "crates/zk_evm" } +zk_evm_abstractions = { version = "=0.150.17", path = "crates/zk_evm_abstractions" } +zkevm_circuits = { version = "=0.150.17", path = "crates/zkevm_circuits" } +zkevm_opcode_defs = { version = "=0.150.17", path = "crates/zkevm_opcode_defs" } +zkevm_test_harness = { version = "=0.150.17", path = "crates/zkevm_test_harness" } +zkevm-assembly = { version = "=0.150.17", path = "crates/zkEVM-assembly" } # `zksync-crypto` repository snark_wrapper = "=0.30.10"