diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index 76a4dc6..cf41dd9 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -1,3 +1,3 @@ { - ".": "0.30.9" + ".": "0.30.10" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f10212..68810be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [0.30.10](https://github.com/matter-labs/zksync-crypto/compare/v0.30.9...v0.30.10) (2024-11-27) + + +### Features + +* **franklin-crypto:** add `extern crate core;` to lib.rs ([#27](https://github.com/matter-labs/zksync-crypto/issues/27)) ([3084cb8](https://github.com/matter-labs/zksync-crypto/commit/3084cb821965382d63cc6f5bc074cf6dcfaff84d)) + + +### Bug Fixes + +* Disabled vectorisation for neon ([#52](https://github.com/matter-labs/zksync-crypto/issues/52)) ([3900a4b](https://github.com/matter-labs/zksync-crypto/commit/3900a4b4b225545e9cc05ad7ebca570aac3dd300)) + ## [0.30.9](https://github.com/matter-labs/zksync-crypto/compare/v0.30.8...v0.30.9) (2024-11-21) diff --git a/Cargo.toml b/Cargo.toml index 0d148bd..d9b2bd3 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.9" +version = "0.30.10" 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.9", path = "crates/bellman", package = "zksync_bellman" } -boojum = { version = "=0.30.9", path = "crates/boojum" } -zksync_solidity_vk_codegen = { version = "=0.30.9", path = "crates/codegen" } -codegen-bin = { version = "=0.30.9", path = "crates/codegen-bin" } -cs_derive = { version = "=0.30.9", path = "crates/cs_derive", package = "zksync_cs_derive" } -ff = { version = "=0.30.9", path = "crates/ff", package = "zksync_ff" } -ff_derive = { version = "=0.30.9", path = "crates/ff_derive", package = "zksync_ff_derive" } -franklin-crypto = { version = "=0.30.9", path = "crates/franklin-crypto" } -pairing = { version = "=0.30.9", path = "crates/pairing", package = "zksync_pairing" } -rescue_poseidon = { version = "=0.30.9", path = "crates/rescue-poseidon" } -snark_wrapper = { version = "=0.30.9", path = "crates/snark-wrapper" } +bellman = { version = "=0.30.10", path = "crates/bellman", package = "zksync_bellman" } +boojum = { version = "=0.30.10", path = "crates/boojum" } +zksync_solidity_vk_codegen = { version = "=0.30.10", path = "crates/codegen" } +codegen-bin = { version = "=0.30.10", path = "crates/codegen-bin" } +cs_derive = { version = "=0.30.10", path = "crates/cs_derive", package = "zksync_cs_derive" } +ff = { version = "=0.30.10", path = "crates/ff", package = "zksync_ff" } +ff_derive = { version = "=0.30.10", path = "crates/ff_derive", package = "zksync_ff_derive" } +franklin-crypto = { version = "=0.30.10", path = "crates/franklin-crypto" } +pairing = { version = "=0.30.10", path = "crates/pairing", package = "zksync_pairing" } +rescue_poseidon = { version = "=0.30.10", path = "crates/rescue-poseidon" } +snark_wrapper = { version = "=0.30.10", path = "crates/snark-wrapper" } [profile.release] debug = true