diff --git a/CHANGELOG.md b/CHANGELOG.md index c94fd6d4..1a39d699 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview ## [Unreleased] +## [19.0.0] - 2025-07-07 + +- Fix remove clear_layer_data call [#95](https://github.com/filecoin-project/rust-filecoin-proofs-api/pull/95) +- Fix update cache clearing calls [#106](https://github.com/filecoin-project/rust-filecoin-proofs-api/pull/106) + ## [18.1.0] - 2024-06-18 - Update API doc comments [#101](https://github.com/filecoin-project/rust-filecoin-proofs-api/pull/101) @@ -168,7 +173,8 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview - Initial stable release -[Unreleased]: https://github.com/filecoin-project/rust-filecoin-proofs-api/compare/v18.1.0...HEAD +[Unreleased]: https://github.com/filecoin-project/rust-filecoin-proofs-api/compare/v19.0.0...HEAD +[19.0.0]: https://github.com/filecoin-project/rust-filecoin-proofs-api/tree/v19.0.0 [18.1.0]: https://github.com/filecoin-project/rust-filecoin-proofs-api/tree/v18.1.0 [18.0.1]: https://github.com/filecoin-project/rust-filecoin-proofs-api/tree/v18.0.1 [18.0.0]: https://github.com/filecoin-project/rust-filecoin-proofs-api/tree/v18.0.0 diff --git a/Cargo.toml b/Cargo.toml index f0d9b568..4942b253 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "filecoin-proofs-api" -version = "18.1.0" +version = "19.0.0" description = "API to interact with the proofs system in Filecoin" authors = ["dignifiedquire "] edition = "2018" @@ -14,9 +14,9 @@ bincode = "1.1.2" blstrs = "0.7" lazy_static = "1.2" serde = "1.0.104" -filecoin-proofs-v1 = { package = "filecoin-proofs", version = "~18.1.0", default-features = false } -fr32 = { version = "~11.1.0", default-features = false } -storage-proofs-core = { version = "~18.1.0", default-features = false } +filecoin-proofs-v1 = { package = "filecoin-proofs", version = "~19.0.0", default-features = false } +fr32 = { version = "~12.0.0", default-features = false } +storage-proofs-core = { version = "~19.0.0", default-features = false } [features] default = ["opencl", "cuda"]