Skip to content

Commit eafe982

Browse files
committed
chore: prepare v19.0.1 release
1 parent e1fc75d commit eafe982

File tree

4 files changed

+4267
-2
lines changed

4 files changed

+4267
-2
lines changed

CHANGELOG.md

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

88
## Unreleased
99

10+
## [19.0.1] - 2025-09-05
11+
12+
- Update `supraseal-c2` dependency from 0.1.0 to 0.1.1
13+
- Update `indicatif` dependency from 0.16.2 to 0.17
14+
1015
## [19.0.0] - 2025-05-26
1116

1217
- **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)

fil-proofs-param/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ fil_logger.workspace = true
2323
flate2 = { version = "1.0.9", features = ["rust_backend"] }
2424
gperftools = { workspace = true, optional = true }
2525
humansize.workspace = true
26-
indicatif = "0.16.2"
26+
indicatif = "0.17"
2727
itertools.workspace = true
2828
lazy_static.workspace = true
2929
log.workspace = true

fil-proofs-param/src/bin/paramcache.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
use std::env;
22
use std::process::exit;
33
use std::str::FromStr;
4+
use std::time::Duration;
45

56
use dialoguer::{theme::ColorfulTheme, MultiSelect};
67
use filecoin_proofs::{
@@ -283,7 +284,7 @@ pub fn main() {
283284

284285
let spinner = ProgressBar::new_spinner();
285286
spinner.set_message(message);
286-
spinner.enable_steady_tick(100);
287+
spinner.enable_steady_tick(Duration::from_millis(100));
287288

288289
if opts.only_sector_update {
289290
generate_params_empty_sector_update(sector_size, api_version);

0 commit comments

Comments
 (0)