diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index a6125cf..d95abff 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -1,3 +1,3 @@ { - ".": "0.30.5" + ".": "0.30.6" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b1f6ec..139c8f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.30.6](https://github.com/matter-labs/zksync-crypto/compare/v0.30.5...v0.30.6) (2024-10-31) + + +### Bug Fixes + +* **franklin-crypto:** range check goldilocks with naive gate ([#37](https://github.com/matter-labs/zksync-crypto/issues/37)) ([450cdfe](https://github.com/matter-labs/zksync-crypto/commit/450cdfe4cb2d6f1ffd616744129d217d5cec0126)) + ## [0.30.5](https://github.com/matter-labs/zksync-crypto/compare/v0.30.4...v0.30.5) (2024-10-31) diff --git a/Cargo.toml b/Cargo.toml index 2cd964c..67776d0 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.5" +version = "0.30.6" 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.5", path = "crates/bellman", package = "zksync_bellman" } -boojum = { version = "=0.30.5", path = "crates/boojum" } -zksync_solidity_vk_codegen = { version = "=0.30.5", path = "crates/codegen" } -codegen-bin = { version = "=0.30.5", path = "crates/codegen-bin" } -cs_derive = { version = "=0.30.5", path = "crates/cs_derive", package = "zksync_cs_derive" } -ff = { version = "=0.30.5", path = "crates/ff", package = "zksync_ff" } -ff_derive = { version = "=0.30.5", path = "crates/ff_derive", package = "zksync_ff_derive" } -franklin-crypto = { version = "=0.30.5", path = "crates/franklin-crypto" } -pairing = { version = "=0.30.5", path = "crates/pairing", package = "zksync_pairing" } -rescue_poseidon = { version = "=0.30.5", path = "crates/rescue-poseidon" } -snark_wrapper = { version = "=0.30.5", path = "crates/snark-wrapper" } +bellman = { version = "=0.30.6", path = "crates/bellman", package = "zksync_bellman" } +boojum = { version = "=0.30.6", path = "crates/boojum" } +zksync_solidity_vk_codegen = { version = "=0.30.6", path = "crates/codegen" } +codegen-bin = { version = "=0.30.6", path = "crates/codegen-bin" } +cs_derive = { version = "=0.30.6", path = "crates/cs_derive", package = "zksync_cs_derive" } +ff = { version = "=0.30.6", path = "crates/ff", package = "zksync_ff" } +ff_derive = { version = "=0.30.6", path = "crates/ff_derive", package = "zksync_ff_derive" } +franklin-crypto = { version = "=0.30.6", path = "crates/franklin-crypto" } +pairing = { version = "=0.30.6", path = "crates/pairing", package = "zksync_pairing" } +rescue_poseidon = { version = "=0.30.6", path = "crates/rescue-poseidon" } +snark_wrapper = { version = "=0.30.6", path = "crates/snark-wrapper" } [profile.release] debug = true