Skip to content

Commit f16d5c2

Browse files
chore(main): release 0.152.12 (#71)
🤖 I have created a release *beep* *boop* --- ## [0.152.12](v0.152.11...v0.152.12) (2025-02-07) ### Features * Bump crypto versions ([#76](#76)) ([b8cec04](b8cec04)) * **cudart:** refactor allocations and stream ([#75](#75)) ([9c0bedc](9c0bedc)) ### Bug Fixes * **ci:** bump deprecated actions/download-artifact and actions/upload-artifact v3 to v4 ([#74](#74)) ([5727c7c](5727c7c)) * **ci:** Update github-hosted runner label ([#70](#70)) ([822c276](822c276)) * **cudart-sys:** strip the "V" from the version string ([#73](#73)) ([76cfc1c](76cfc1c)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --------- Co-authored-by: zksync-era-bot <zksync-era-bot@users.noreply.github.com>
1 parent b8cec04 commit f16d5c2

File tree

3 files changed

+28
-13
lines changed

3 files changed

+28
-13
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.152.11"
2+
".": "0.152.12"
33
}

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## [0.152.12](https://github.com/matter-labs/zksync-crypto-gpu/compare/v0.152.11...v0.152.12) (2025-02-07)
4+
5+
6+
### Features
7+
8+
* Bump crypto versions ([#76](https://github.com/matter-labs/zksync-crypto-gpu/issues/76)) ([b8cec04](https://github.com/matter-labs/zksync-crypto-gpu/commit/b8cec04e0266fb60f83f95f350c9e711f6acf75b))
9+
* **cudart:** refactor allocations and stream ([#75](https://github.com/matter-labs/zksync-crypto-gpu/issues/75)) ([9c0bedc](https://github.com/matter-labs/zksync-crypto-gpu/commit/9c0bedc1fe29afcf7fcef03af7a0611e5611dcde))
10+
11+
12+
### Bug Fixes
13+
14+
* **ci:** bump deprecated actions/download-artifact and actions/upload-artifact v3 to v4 ([#74](https://github.com/matter-labs/zksync-crypto-gpu/issues/74)) ([5727c7c](https://github.com/matter-labs/zksync-crypto-gpu/commit/5727c7c37a10a1be555cb9dac5685245491ae9fa))
15+
* **ci:** Update github-hosted runner label ([#70](https://github.com/matter-labs/zksync-crypto-gpu/issues/70)) ([822c276](https://github.com/matter-labs/zksync-crypto-gpu/commit/822c276de858d69188ef8874aa8a00208fadc6a4))
16+
* **cudart-sys:** strip the "V" from the version string ([#73](https://github.com/matter-labs/zksync-crypto-gpu/issues/73)) ([76cfc1c](https://github.com/matter-labs/zksync-crypto-gpu/commit/76cfc1c8f6fb5e0042b78bf675b6a6a1f52373e8))
17+
318
## [0.152.11](https://github.com/matter-labs/zksync-crypto-gpu/compare/v0.152.10...v0.152.11) (2025-01-17)
419

520

Cargo.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,21 @@ keywords = ["blockchain", "zksync"]
1111
categories = ["cryptography"]
1212
repository = "https://github.com/matter-labs/zksync-crypto-gpu"
1313
# All the packages in the workspace should have the same version
14-
version = "0.152.11"
14+
version = "0.152.12"
1515

1616
[workspace.dependencies]
1717
# Local dependencies
18-
boojum-cuda = { version = "=0.152.11", path = "crates/boojum-cuda" }
19-
era_criterion_cuda = { version = "=0.152.11", path = "crates/criterion-cuda" }
20-
era_cudart = { version = "=0.152.11", path = "crates/cudart" }
21-
era_cudart_sys = { version = "=0.152.11", path = "crates/cudart-sys" }
22-
era_cudart_sys_bindings_generator = { version = "=0.152.11", path = "crates/cudart-sys-bindings-generator" }
23-
gpu-ffi = { version = "=0.152.11", path = "crates/gpu-ffi", package = "zksync-gpu-ffi" }
24-
gpu-ffi-bindings-generator = { version = "=0.152.11", path = "crates/gpu-ffi", package = "zksync-gpu-ffi-bindings-generator" }
25-
gpu-prover = { version = "=0.152.11", path = "crates/gpu-prover", package = "zksync-gpu-prover" }
26-
shivini = { version = "=0.152.11", path = "crates/shivini" }
27-
wrapper-prover = { version = "=0.152.11", path = "crates/wrapper-prover", package = "zksync-wrapper-prover" }
28-
fflonk = { version = "=0.152.11", path = "crates/fflonk", package = "fflonk-cuda" }
18+
boojum-cuda = { version = "=0.152.12", path = "crates/boojum-cuda" }
19+
era_criterion_cuda = { version = "=0.152.12", path = "crates/criterion-cuda" }
20+
era_cudart = { version = "=0.152.12", path = "crates/cudart" }
21+
era_cudart_sys = { version = "=0.152.12", path = "crates/cudart-sys" }
22+
era_cudart_sys_bindings_generator = { version = "=0.152.12", path = "crates/cudart-sys-bindings-generator" }
23+
gpu-ffi = { version = "=0.152.12", path = "crates/gpu-ffi", package = "zksync-gpu-ffi" }
24+
gpu-ffi-bindings-generator = { version = "=0.152.12", path = "crates/gpu-ffi", package = "zksync-gpu-ffi-bindings-generator" }
25+
gpu-prover = { version = "=0.152.12", path = "crates/gpu-prover", package = "zksync-gpu-prover" }
26+
shivini = { version = "=0.152.12", path = "crates/shivini" }
27+
wrapper-prover = { version = "=0.152.12", path = "crates/wrapper-prover", package = "zksync-wrapper-prover" }
28+
fflonk = { version = "=0.152.12", path = "crates/fflonk", package = "fflonk-cuda" }
2929

3030
# These dependencies should be shared by all the crates.
3131
# zksync-crypto repository

0 commit comments

Comments
 (0)