Skip to content
Open

v19.0.1 #1788

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/proof-params-download/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ runs:
# paramfetch is using `ipget` which currently always times out on CI,
# hence get this file via HTTP instead.
#cargo run --release --bin paramfetch -- -a -j srs-inner-product.json
run: 'curl https://proofs.filecoin.io/v28-fil-inner-product-v1.srs --output /var/tmp/filecoin-proof-parameters/v28-fil-inner-product-v1.srs'
run: 'mkdir -p /var/tmp/filecoin-proof-parameters && curl -fSL https://proofs.filecoin.io/v28-fil-inner-product-v1.srs -o /var/tmp/filecoin-proof-parameters/v28-fil-inner-product-v1.srs'
- name: List parameter files
shell: bash
run: ls -al /var/tmp/filecoin-proof-parameters/
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,11 @@ jobs:
sudo apt-get update
sudo apt-get install --no-install-recommends --yes cuda-drivers
rm nvidia-driver-local-repo-ubuntu2404-570.148.08_1.0-1_amd64.deb
- name: Load NVIDIA kernel modules and verify GPU
run: |
sudo modprobe nvidia
sudo modprobe nvidia-uvm
nvidia-smi || echo "WARNING: nvidia-smi failed, GPU may not be available"
- name: Install required packages
run: |
sudo apt-get update
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/target
**/*.rs.bk
Cargo.lock
.criterion
**/*.h
heaptrack*
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview

## Unreleased

## [19.0.1] - 2025-09-05

- Update `supraseal-c2` dependency from 0.1.0 to 0.1.1
- Update `indicatif` dependency from 0.16.2 to 0.17

## [19.0.0] - 2025-05-26

- **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)
Expand Down
Loading