Skip to content

Commit

Permalink
feat: chore: release filecoin-proofs-2.0.0 (#1128)
Browse files Browse the repository at this point in the history
feat: chore: release fil-proofs-tooling-2.0.0
feat: chore: release storage-proofs-core-2.0.0
feat: chore: release storage-proofs-porep-2.0.0
feat: chore: release storage-proofs-post-2.0.0
docs: update changelog
  • Loading branch information
cryptonemo authored May 27, 2020
1 parent f1ebb43 commit a7e4c58
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 14 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,14 @@ and this project adheres to [Semantic Versioning](https://book.async.rs/overview

## Unreleased

## 2.0.0 - 2020-05-27

## 1.0.0 - 2020-05-1901
- Add a method 'unseal_range' to unseal a sector to a file descriptor
- Calculate required config count based on tree shape
- Update merkle tree cached tree usage (fixing an incorrect size usage)
- Replace merkle_light 'height' property usage with 'row_count'
- Update stacked bench usage of recent replica changes

- Initial stable release
## 1.0.0 - 2020-05-19

- Initial stable release
2 changes: 1 addition & 1 deletion fil-proofs-tooling/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fil-proofs-tooling"
description = "Tooling for rust-fil-proofs"
version = "1.0.0"
version = "2.0.0"
authors = ["dignifiedquire <dignifiedquire@gmail.com>"]
license = "MIT OR Apache-2.0"
publish = false
Expand Down
4 changes: 2 additions & 2 deletions filecoin-proofs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "filecoin-proofs"
description = "The Filecoin specific aspects of storage-proofs, including a C based FFI, to generate and verify proofs."
version = "1.0.0"
version = "2.0.0"
authors = ["dignifiedquire <dignifiedquire@gmail.com>", "laser <l@s3r.com>", "porcuquine <porcuquine@users.noreply.github.com>"]
license = "MIT OR Apache-2.0"
edition = "2018"
repository = "https://github.com/filecoin-project/rust-fil-proofs"
readme = "README.md"

[dependencies]
storage-proofs = { version = "1.0.0", path = "../storage-proofs" }
storage-proofs = { version = "2.0.0", path = "../storage-proofs" }
bitvec = "0.17"
chrono = "0.4"
rand = "0.7"
Expand Down
8 changes: 4 additions & 4 deletions storage-proofs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[package]
name = "storage-proofs"
description = "Implementations of Proofs of Storage"
version = "1.0.0"
version = "2.0.0"
authors = ["dignifiedquire <dignifiedquire@gmail.com>", "laser <l@s3r.com>", "porcuquine <porcuquine@users.noreply.github.com>"]
license = "MIT OR Apache-2.0"
edition = "2018"
repository = "https://github.com/filecoin-project/rust-fil-proofs"
readme = "README.md"

[dependencies]
storage-proofs-core = { path = "./core", version = "1.0.0" }
storage-proofs-post = { path = "./post", version = "1.0.0" }
storage-proofs-porep = { path = "./porep", version = "1.0.0" }
storage-proofs-core = { path = "./core", version = "2.0.0" }
storage-proofs-post = { path = "./post", version = "2.0.0" }
storage-proofs-porep = { path = "./porep", version = "2.0.0" }

[features]
default = ["gpu"]
Expand Down
2 changes: 1 addition & 1 deletion storage-proofs/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "storage-proofs-core"
version = "1.0.0"
version = "2.0.0"
authors = ["dignifiedquire <me@dignifiedquire.com>"]
description = "Core parts for proofs of storage"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions storage-proofs/porep/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "storage-proofs-porep"
version = "1.0.0"
version = "2.0.0"
authors = ["dignifiedquire <me@dignifiedquire.com>"]
description = "Proofs of replication"
license = "MIT OR Apache-2.0"
Expand All @@ -9,7 +9,7 @@ repository = "https://github.com/filecoin-project/rust-fil-proofs"
readme = "README.md"

[dependencies]
storage-proofs-core = { path = "../core", version = "1.0.0" }
storage-proofs-core = { path = "../core", version = "2.0.0" }
sha2raw = { path = "../../sha2raw", version = "1.0.0" }
rand = "0.7"
merkletree = "0.20.0"
Expand Down
4 changes: 2 additions & 2 deletions storage-proofs/post/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "storage-proofs-post"
version = "1.0.0"
version = "2.0.0"
authors = ["dignifiedquire <me@dignifiedquire.com>"]
license = "MIT OR Apache-2.0"
description = "Proofs of Space Time"
Expand All @@ -9,7 +9,7 @@ repository = "https://github.com/filecoin-project/rust-fil-proofs"
readme = "README.md"

[dependencies]
storage-proofs-core = { path = "../core", version = "1.0.0" }
storage-proofs-core = { path = "../core", version = "2.0.0" }
rand = "0.7"
merkletree = "0.20.0"
byteorder = "1"
Expand Down

0 comments on commit a7e4c58

Please sign in to comment.