Skip to content
Closed
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
8 changes: 7 additions & 1 deletion 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.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)
Expand Down Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
edition = "2018"
Expand All @@ -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"]
Expand Down
Loading