Skip to content

Commit

Permalink
Merge branch 'main' into popzxc-stable-circuit-sequencer-api
Browse files Browse the repository at this point in the history
  • Loading branch information
popzxc committed Nov 11, 2024
2 parents dda60e0 + ef2cd10 commit 21be2d4
Show file tree
Hide file tree
Showing 10 changed files with 1,629 additions and 1,030 deletions.
2 changes: 1 addition & 1 deletion .github/release-please/manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.150.9"
".": "0.150.12"
}
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

## [0.150.12](https://github.com/matter-labs/zksync-protocol/compare/v0.150.11...v0.150.12) (2024-11-06)


### Bug Fixes

* Compression setup generation ([#63](https://github.com/matter-labs/zksync-protocol/issues/63)) ([a17c0c0](https://github.com/matter-labs/zksync-protocol/commit/a17c0c0425e3c3c13f7c546d7c3f58ef264a502a))

## [0.150.11](https://github.com/matter-labs/zksync-protocol/compare/v0.150.10...v0.150.11) (2024-10-31)


### Features

* Generate light setup keys ([#56](https://github.com/matter-labs/zksync-protocol/issues/56)) ([587aaa1](https://github.com/matter-labs/zksync-protocol/commit/587aaa1530e0f44300530865a01777c42a3b1d85))

## [0.150.10](https://github.com/matter-labs/zksync-protocol/compare/v0.150.9...v0.150.10) (2024-10-31)


### Miscellaneous Chores

* bump crypto deps ([#59](https://github.com/matter-labs/zksync-protocol/issues/59)) ([e4d42e2](https://github.com/matter-labs/zksync-protocol/commit/e4d42e2ab1ff9c3f7767a1515f8407bb651c106f))

## [0.150.9](https://github.com/matter-labs/zksync-protocol/compare/v0.150.8...v0.150.9) (2024-10-29)


Expand Down
30 changes: 15 additions & 15 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ resolver = "2"

[workspace.package]
# All the packages in the workspace should have the same version
version = "0.150.9"
version = "0.150.12"
edition = "2021"
authors = ["The Matter Labs Team <[email protected]>"]
homepage = "https://zksync.io/"
Expand All @@ -16,20 +16,20 @@ keywords = ["blockchain", "zksync"]
categories = ["cryptography"]

[workspace.dependencies]
circuit_definitions = { version = "=0.150.9", path = "crates/circuit_definitions" }
circuit_encodings = { version = "=0.150.9", path = "crates/circuit_encodings" }
circuit_sequencer_api = { version = "=0.150.9", path = "crates/circuit_sequencer_api" }
kzg = { version = "=0.150.9", path = "crates/kzg", package = "zksync_kzg" }
zk_evm = { version = "=0.150.9", path = "crates/zk_evm" }
zk_evm_abstractions = { version = "=0.150.9", path = "crates/zk_evm_abstractions" }
zkevm_circuits = { version = "=0.150.9", path = "crates/zkevm_circuits" }
zkevm_opcode_defs = { version = "=0.150.9", path = "crates/zkevm_opcode_defs" }
zkevm_test_harness = { version = "=0.150.9", path = "crates/zkevm_test_harness" }
zkevm-assembly = { version = "=0.150.9", path = "crates/zkEVM-assembly" }
circuit_definitions = { version = "=0.150.12", path = "crates/circuit_definitions" }
circuit_encodings = { version = "=0.150.12", path = "crates/circuit_encodings" }
circuit_sequencer_api = { version = "=0.150.12", path = "crates/circuit_sequencer_api" }
kzg = { version = "=0.150.12", path = "crates/kzg", package = "zksync_kzg" }
zk_evm = { version = "=0.150.12", path = "crates/zk_evm" }
zk_evm_abstractions = { version = "=0.150.12", path = "crates/zk_evm_abstractions" }
zkevm_circuits = { version = "=0.150.12", path = "crates/zkevm_circuits" }
zkevm_opcode_defs = { version = "=0.150.12", path = "crates/zkevm_opcode_defs" }
zkevm_test_harness = { version = "=0.150.12", path = "crates/zkevm_test_harness" }
zkevm-assembly = { version = "=0.150.12", path = "crates/zkEVM-assembly" }

# `zksync-crypto` repository
snark_wrapper = "=0.30.3"
bellman = { package = "zksync_bellman", version = "=0.30.3" }
boojum = "=0.30.3"
cs_derive = { package = "zksync_cs_derive", version = "=0.30.3" }
snark_wrapper = "=0.30.6"
bellman = { package = "zksync_bellman", version = "=0.30.6" }
boojum = "=0.30.6"
cs_derive = { package = "zksync_cs_derive", version = "=0.30.6" }

Loading

0 comments on commit 21be2d4

Please sign in to comment.