From ba077dbd497310c14bfb574888813e372d0b693a Mon Sep 17 00:00:00 2001 From: saitima <2371121+saitima@users.noreply.github.com> Date: Thu, 31 Oct 2024 20:47:46 +0300 Subject: [PATCH 1/2] fix(proof-compression): add missing crate description (#46) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # What ❔ This PR adds missing crate description for proof-compression ## Why ❔ ## Checklist - [ ] PR title corresponds to the body of PR (we generate changelog entries from PRs). - [ ] Tests for the changes have been added / updated. - [ ] Documentation comments have been added / updated. - [ ] Code has been formatted via `zk fmt` and `zk lint`. --------- Co-authored-by: Michael Carilli Co-authored-by: zksync-era-bot <147085853+zksync-era-bot@users.noreply.github.com> Co-authored-by: zksync-era-bot Co-authored-by: Robert Remen Co-authored-by: Daniyar Itegulov --- crates/proof-compression/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/proof-compression/Cargo.toml b/crates/proof-compression/Cargo.toml index c968a36..c3bb25d 100644 --- a/crates/proof-compression/Cargo.toml +++ b/crates/proof-compression/Cargo.toml @@ -8,6 +8,7 @@ keywords.workspace = true categories.workspace = true repository.workspace = true version.workspace = true +description = "Both cuda and cpu based proof compression and wrapping chain" exclude = ["/data"] [dependencies] From c75f7fb95b422d5eec120c2edf9b521e52c5518a Mon Sep 17 00:00:00 2001 From: zksync-era-bot <147085853+zksync-era-bot@users.noreply.github.com> Date: Thu, 31 Oct 2024 22:26:09 +0400 Subject: [PATCH 2/2] chore(main): release 0.152.3 (#47) --- .github/release-please/manifest.json | 2 +- CHANGELOG.md | 7 +++++++ Cargo.toml | 24 ++++++++++++------------ 3 files changed, 20 insertions(+), 13 deletions(-) diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index b9364ba..71edf59 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -1,3 +1,3 @@ { - ".": "0.152.2" + ".": "0.152.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 8187878..ec63550 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.152.3](https://github.com/matter-labs/zksync-crypto-gpu/compare/v0.152.2...v0.152.3) (2024-10-31) + + +### Bug Fixes + +* **proof-compression:** add missing crate description ([#46](https://github.com/matter-labs/zksync-crypto-gpu/issues/46)) ([ba077db](https://github.com/matter-labs/zksync-crypto-gpu/commit/ba077dbd497310c14bfb574888813e372d0b693a)) + ## [0.152.2](https://github.com/matter-labs/zksync-crypto-gpu/compare/v0.152.1...v0.152.2) (2024-10-31) diff --git a/Cargo.toml b/Cargo.toml index 5cbeb57..96b90ef 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,21 +11,21 @@ keywords = ["blockchain", "zksync"] categories = ["cryptography"] repository = "https://github.com/matter-labs/zksync-crypto-gpu" # All the packages in the workspace should have the same version -version = "0.152.2" +version = "0.152.3" [workspace.dependencies] # Local dependencies -boojum-cuda = { version = "=0.152.2", path = "crates/boojum-cuda" } -era_criterion_cuda = { version = "=0.152.2", path = "crates/criterion-cuda" } -era_cudart = { version = "=0.152.2", path = "crates/cudart" } -era_cudart_sys = { version = "=0.152.2", path = "crates/cudart-sys" } -era_cudart_sys_bindings_generator = { version = "=0.152.2", path = "crates/cudart-sys-bindings-generator" } -gpu-ffi = { version = "=0.152.2", path = "crates/gpu-ffi", package = "zksync-gpu-ffi" } -gpu-ffi-bindings-generator = { version = "=0.152.2", path = "crates/gpu-ffi", package = "zksync-gpu-ffi-bindings-generator" } -gpu-prover = { version = "=0.152.2", path = "crates/gpu-prover", package = "zksync-gpu-prover" } -shivini = { version = "=0.152.2", path = "crates/shivini" } -wrapper-prover = { version = "=0.152.2", path = "crates/wrapper-prover", package = "zksync-wrapper-prover" } -fflonk = { version = "=0.152.2", path = "crates/fflonk", package = "fflonk-cuda" } +boojum-cuda = { version = "=0.152.3", path = "crates/boojum-cuda" } +era_criterion_cuda = { version = "=0.152.3", path = "crates/criterion-cuda" } +era_cudart = { version = "=0.152.3", path = "crates/cudart" } +era_cudart_sys = { version = "=0.152.3", path = "crates/cudart-sys" } +era_cudart_sys_bindings_generator = { version = "=0.152.3", path = "crates/cudart-sys-bindings-generator" } +gpu-ffi = { version = "=0.152.3", path = "crates/gpu-ffi", package = "zksync-gpu-ffi" } +gpu-ffi-bindings-generator = { version = "=0.152.3", path = "crates/gpu-ffi", package = "zksync-gpu-ffi-bindings-generator" } +gpu-prover = { version = "=0.152.3", path = "crates/gpu-prover", package = "zksync-gpu-prover" } +shivini = { version = "=0.152.3", path = "crates/shivini" } +wrapper-prover = { version = "=0.152.3", path = "crates/wrapper-prover", package = "zksync-wrapper-prover" } +fflonk = { version = "=0.152.3", path = "crates/fflonk", package = "fflonk-cuda" } # These dependencies should be shared by all the crates. circuit_definitions = { version = "=0.150.11" }