Skip to content

Commit 8d55e4c

Browse files
authored
Release v19.0.0 (#1780)
* Save v19.0.0 Cargo.lock Signed-off-by: Jakub Sztandera <[email protected]> * Update changelog for v19.0.0 Signed-off-by: Jakub Sztandera <[email protected]> * chore: Release filecoin-hashers version 14.0.0 Signed-off-by: Jakub Sztandera <[email protected]> * chore: Release fr32 version 12.0.0 Signed-off-by: Jakub Sztandera <[email protected]> * chore: Release storage-proofs-core version 19.0.0 Signed-off-by: Jakub Sztandera <[email protected]> * chore: Release sha2raw version 14.0.0 Signed-off-by: Jakub Sztandera <[email protected]> * chore: Release storage-proofs-porep version 19.0.0 Signed-off-by: Jakub Sztandera <[email protected]> * chore: Release storage-proofs-post version 19.0.0 Signed-off-by: Jakub Sztandera <[email protected]> * chore: Release storage-proofs-update version 19.0.0 Signed-off-by: Jakub Sztandera <[email protected]> * chore: Release filecoin-proofs version 19.0.0 Signed-off-by: Jakub Sztandera <[email protected]> * chore: Release fil-proofs-param version 14.0.0 Signed-off-by: Jakub Sztandera <[email protected]> * chore: Release fil-proofs-tooling version 19.0.0 Signed-off-by: Jakub Sztandera <[email protected]> --------- Signed-off-by: Jakub Sztandera <[email protected]>
1 parent 0e2b1cc commit 8d55e4c

File tree

13 files changed

+4270
-21
lines changed

13 files changed

+4270
-21
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview
77

88
## Unreleased
99

10+
## [19.0.0] - 2025-05-26
11+
12+
- **BREAKING CHANGE:** Remove unused functions `clear_layer_data()` and `clear_caches` from the public API. The signatures of `clear_cache()` and `clear_synthetic_proofs()` have been updated to no longer be generic over the tree type. These functions are not used internally, so the removal and signature change helps clean up the public API. [#1771](https://github.com/filecoin-project/rust-fil-proofs/pull/1771)
13+
- Fix compilation issues on aarch64 in the `fr32` crate. [#1772](https://github.com/filecoin-project/rust-fil-proofs/pull/1772)
14+
- Upgrade the `hwloc` dependency in the `storage-proofs-porep` crate to ensure proper hardware locality support. [#1766](https://github.com/filecoin-project/rust-fil-proofs/pull/1766)
15+
- Add seal regression testing support in the core module, improving our internal testing capabilities. [#1765](https://github.com/filecoin-project/rust-fil-proofs/pull/1765)
16+
1017
## [18.1.0] - 2024-06-18
1118

1219
- Change FIP92 min value to updated value [#1758](https://github.com/filecoin-project/rust-fil-proofs/pull/1758)

Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@ members = [
1313
]
1414

1515
[workspace.dependencies]
16-
fil-proofs-param = { path = "fil-proofs-param", default-features = false, version = "~13.1.0" }
17-
fil-proofs-tooling = { path = "fil-proofs-tooling", default-features = false, version = "~18.1.0" }
18-
filecoin-hashers = { path = "filecoin-hashers", default-features = false, version = "~13.1.0" }
19-
filecoin-proofs = { path = "filecoin-proofs", default-features = false, version = "~18.1.0" }
20-
fr32 = { path = "fr32", default-features = false, version = "~11.1.0" }
21-
sha2raw = { path = "sha2raw", default-features = false, version = "~13.1.0" }
22-
storage-proofs-core = { path = "storage-proofs-core", default-features = false, version = "~18.1.0" }
23-
storage-proofs-porep = { path = "storage-proofs-porep", default-features = false, version = "~18.1.0" }
24-
storage-proofs-post = { path = "storage-proofs-post", default-features = false, version = "~18.1.0" }
25-
storage-proofs-update = { path = "storage-proofs-update", default-features = false, version = "~18.1.0" }
16+
fil-proofs-param = { path = "fil-proofs-param", default-features = false, version = "~14.0.0" }
17+
fil-proofs-tooling = { path = "fil-proofs-tooling", default-features = false, version = "~19.0.0" }
18+
filecoin-hashers = { path = "filecoin-hashers", default-features = false, version = "~14.0.0" }
19+
filecoin-proofs = { path = "filecoin-proofs", default-features = false, version = "~19.0.0" }
20+
fr32 = { path = "fr32", default-features = false, version = "~12.0.0" }
21+
sha2raw = { path = "sha2raw", default-features = false, version = "~14.0.0" }
22+
storage-proofs-core = { path = "storage-proofs-core", default-features = false, version = "~19.0.0" }
23+
storage-proofs-porep = { path = "storage-proofs-porep", default-features = false, version = "~19.0.0" }
24+
storage-proofs-post = { path = "storage-proofs-post", default-features = false, version = "~19.0.0" }
25+
storage-proofs-update = { path = "storage-proofs-update", default-features = false, version = "~19.0.0" }
2626
# Sorted alphabetically
2727
anyhow = "1.0.23"
2828
bellperson = "0.26.0"
@@ -59,4 +59,4 @@ sha2 = "0.10.2"
5959
structopt = "0.3.12"
6060
tempfile = "3"
6161
thiserror = "2"
62-
typenum = "1.11.2"
62+
typenum = "1.11.2"

fil-proofs-param/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "fil-proofs-param"
33
description = "Filecoin parameter cli tools."
4-
version = "13.1.0"
4+
version = "14.0.0"
55
authors = ["dignifiedquire <[email protected]>", "laser <[email protected]>", "porcuquine <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
edition = "2018"

fil-proofs-tooling/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "fil-proofs-tooling"
33
description = "Tooling for rust-fil-proofs"
4-
version = "18.1.0"
4+
version = "19.0.0"
55
authors = ["dignifiedquire <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
publish = false

filecoin-hashers/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "filecoin-hashers"
33
description = "Hashers used in filecoin and their abstractions."
4-
version = "13.1.0"
4+
version = "14.0.0"
55
authors = ["dignifiedquire <[email protected]>", "porcuquine <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
edition = "2018"

filecoin-proofs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "filecoin-proofs"
33
description = "The Filecoin specific aspects of storage-proofs, including a C based FFI, to generate and verify proofs."
4-
version = "18.1.0"
4+
version = "19.0.0"
55
authors = ["dignifiedquire <[email protected]>", "laser <[email protected]>", "porcuquine <[email protected]>"]
66
license = "MIT OR Apache-2.0"
77
edition = "2018"

fr32/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fr32"
3-
version = "11.1.0"
3+
version = "12.0.0"
44
authors = ["dignifiedquire <[email protected]>"]
55
description = "Filecoin proofs Fr/32-byte conversion tooling"
66
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)