diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index 356b660..a370c18 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -1,3 +1,3 @@ { - ".": "0.30.2" + ".": "0.30.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index ae2b0cb..4c1cf07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [0.30.3](https://github.com/matter-labs/zksync-crypto/compare/v0.30.2...v0.30.3) (2024-10-29) + + +### Features + +* **bellman:** declare naive main gate ([#28](https://github.com/matter-labs/zksync-crypto/issues/28)) ([5f563e0](https://github.com/matter-labs/zksync-crypto/commit/5f563e06a0c0c76c1c232ef041c359e7256d333c)) +* **franklin-crypto:** naive main gate compatible gadgets ([#30](https://github.com/matter-labs/zksync-crypto/issues/30)) ([f44dd45](https://github.com/matter-labs/zksync-crypto/commit/f44dd45ce587326bb6f0a0b84ce6096e191ca298)) +* **snark-wrapper:** wrapper circuit with naive main gate ([#29](https://github.com/matter-labs/zksync-crypto/issues/29)) ([235d0c8](https://github.com/matter-labs/zksync-crypto/commit/235d0c8481b7079a07ccb621745a230194bb00ce)) + ## [0.30.2](https://github.com/matter-labs/zksync-crypto/compare/v0.30.1...v0.30.2) (2024-10-29) diff --git a/Cargo.toml b/Cargo.toml index 7237cb1..ad82bfa 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.30.2" +version = "0.30.3" edition = "2021" authors = ["The Matter Labs Team "] homepage = "https://zksync.io/" @@ -17,17 +17,17 @@ categories = ["cryptography"] [workspace.dependencies] # Local dependencies -bellman = { version = "=0.30.2", path = "crates/bellman", package = "zksync_bellman" } -boojum = { version = "=0.30.2", path = "crates/boojum" } -zksync_solidity_vk_codegen = { version = "=0.30.2", path = "crates/codegen" } -codegen-bin = { version = "=0.30.2", path = "crates/codegen-bin" } -cs_derive = { version = "=0.30.2", path = "crates/cs_derive", package = "zksync_cs_derive" } -ff = { version = "=0.30.2", path = "crates/ff", package = "zksync_ff" } -ff_derive = { version = "=0.30.2", path = "crates/ff_derive", package = "zksync_ff_derive" } -franklin-crypto = { version = "=0.30.2", path = "crates/franklin-crypto" } -pairing = { version = "=0.30.2", path = "crates/pairing", package = "zksync_pairing" } -rescue_poseidon = { version = "=0.30.2", path = "crates/rescue-poseidon" } -snark_wrapper = { version = "=0.30.2", path = "crates/snark-wrapper" } +bellman = { version = "=0.30.3", path = "crates/bellman", package = "zksync_bellman" } +boojum = { version = "=0.30.3", path = "crates/boojum" } +zksync_solidity_vk_codegen = { version = "=0.30.3", path = "crates/codegen" } +codegen-bin = { version = "=0.30.3", path = "crates/codegen-bin" } +cs_derive = { version = "=0.30.3", path = "crates/cs_derive", package = "zksync_cs_derive" } +ff = { version = "=0.30.3", path = "crates/ff", package = "zksync_ff" } +ff_derive = { version = "=0.30.3", path = "crates/ff_derive", package = "zksync_ff_derive" } +franklin-crypto = { version = "=0.30.3", path = "crates/franklin-crypto" } +pairing = { version = "=0.30.3", path = "crates/pairing", package = "zksync_pairing" } +rescue_poseidon = { version = "=0.30.3", path = "crates/rescue-poseidon" } +snark_wrapper = { version = "=0.30.3", path = "crates/snark-wrapper" } [profile.release] debug = true