Skip to content
Open
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
6 changes: 6 additions & 0 deletions blssig/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.1](https://github.com/ChainSafe/rust-f3/compare/filecoin-f3-blssig-v0.1.0...filecoin-f3-blssig-v0.1.1) - 2026-01-13

### Other

- update Cargo.toml dependencies

## [0.1.0](https://github.com/ChainSafe/rust-f3/releases/tag/filecoin-f3-blssig-v0.1.0) - 2025-09-23

### Other
Expand Down
4 changes: 2 additions & 2 deletions blssig/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "filecoin-f3-blssig"
version = "0.1.0"
version = "0.1.1"
description = "BLS signature handling for the F3 fast finality protocol"

authors.workspace = true
Expand All @@ -12,7 +12,7 @@ rust-version.workspace = true
[dependencies]
bls-signatures.workspace = true
bls12_381.workspace = true
filecoin-f3-gpbft = { path = "../gpbft", version = "0.1.0" }
filecoin-f3-gpbft = { path = "../gpbft", version = "0.1.1" }
hashlink.workspace = true
parking_lot.workspace = true
thiserror.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions certs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.1](https://github.com/ChainSafe/rust-f3/compare/filecoin-f3-certs-v0.1.0...filecoin-f3-certs-v0.1.1) - 2026-01-13

### Other

- update Cargo.toml dependencies

## [0.1.0](https://github.com/ChainSafe/rust-f3/releases/tag/filecoin-f3-certs-v0.1.0) - 2025-09-23

### Added
Expand Down
6 changes: 3 additions & 3 deletions certs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "filecoin-f3-certs"
version = "0.1.0"
version = "0.1.1"
description = "Data structures and utilities for handling F3 finality certificates"

authors.workspace = true
Expand All @@ -11,10 +11,10 @@ rust-version.workspace = true

[dependencies]
ahash = { workspace = true }
filecoin-f3-gpbft = { path = "../gpbft", version = "0.1.0" }
filecoin-f3-gpbft = { path = "../gpbft", version = "0.1.1" }
keccak-hash = { workspace = true }
thiserror = { workspace = true }

[dev-dependencies]
anyhow = { workspace = true }
filecoin-f3-gpbft = { path = "../gpbft", version = "0.1.0", features = ["test-utils"] }
filecoin-f3-gpbft = { path = "../gpbft", version = "0.1.1", features = ["test-utils"] }
6 changes: 6 additions & 0 deletions gpbft/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.1](https://github.com/ChainSafe/rust-f3/compare/filecoin-f3-gpbft-v0.1.0...filecoin-f3-gpbft-v0.1.1) - 2026-01-13

### Other

- bump rust toolchain and deps ([#36](https://github.com/ChainSafe/rust-f3/pull/36))

## [0.1.0](https://github.com/ChainSafe/rust-f3/releases/tag/filecoin-f3-gpbft-v0.1.0) - 2025-09-23

### Added
Expand Down
4 changes: 2 additions & 2 deletions gpbft/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "filecoin-f3-gpbft"
version = "0.1.0"
version = "0.1.1"
description = "Implementation of the GPBFT consensus algorithm used in the F3 fast finality protocol"

authors.workspace = true
Expand All @@ -14,7 +14,7 @@ ahash = { workspace = true }
anyhow = { workspace = true }
base32 = { workspace = true }
cid = { workspace = true }
filecoin-f3-merkle = { path = "../merkle", version = "0.1.0" }
filecoin-f3-merkle = { path = "../merkle", version = "0.1.1" }
fvm_ipld_bitfield = { workspace = true }
fvm_ipld_encoding = { workspace = true }
keccak-hash = { workspace = true }
Expand Down
6 changes: 6 additions & 0 deletions lightclient/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.1](https://github.com/ChainSafe/rust-f3/compare/filecoin-f3-lightclient-v0.1.0...filecoin-f3-lightclient-v0.1.1) - 2026-01-13

### Other

- update Cargo.toml dependencies

## [0.1.0](https://github.com/ChainSafe/rust-f3/releases/tag/filecoin-f3-lightclient-v0.1.0) - 2025-09-23

### Other
Expand Down
10 changes: 5 additions & 5 deletions lightclient/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[package]
name = "filecoin-f3-lightclient"
version = "0.1.0"
version = "0.1.1"
description = "Light client functionality for F3 fast finality protocol, allowing validation of F3 finality certificates without running a full F3 node"
authors.workspace = true
repository.workspace = true
license.workspace = true
edition.workspace = true

[dependencies]
filecoin-f3-blssig = { path = "../blssig", version = "0.1.0" }
filecoin-f3-certs = { path = "../certs", version = "0.1.0" }
filecoin-f3-gpbft = { path = "../gpbft", version = "0.1.0" }
filecoin-f3-rpc = { path = "../rpc", version = "0.1.0" }
filecoin-f3-blssig = { path = "../blssig", version = "0.1.1" }
filecoin-f3-certs = { path = "../certs", version = "0.1.1" }
filecoin-f3-gpbft = { path = "../gpbft", version = "0.1.1" }
filecoin-f3-rpc = { path = "../rpc", version = "0.1.1" }

anyhow.workspace = true
base64 = { workspace = true }
Expand Down
6 changes: 6 additions & 0 deletions merkle/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.1](https://github.com/ChainSafe/rust-f3/compare/filecoin-f3-merkle-v0.1.0...filecoin-f3-merkle-v0.1.1) - 2026-01-13

### Other

- update Cargo.toml dependencies

## [0.1.0](https://github.com/ChainSafe/rust-f3/releases/tag/filecoin-f3-merkle-v0.1.0) - 2025-09-23

### Other
Expand Down
2 changes: 1 addition & 1 deletion merkle/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "filecoin-f3-merkle"
version = "0.1.0"
version = "0.1.1"
description = "Merkle tree implementation matching go-f3's merkle package"

authors.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions rpc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.1](https://github.com/ChainSafe/rust-f3/compare/filecoin-f3-rpc-v0.1.0...filecoin-f3-rpc-v0.1.1) - 2026-01-13

### Other

- update Cargo.toml dependencies

## [0.1.0](https://github.com/ChainSafe/rust-f3/releases/tag/filecoin-f3-rpc-v0.1.0) - 2025-09-23

### Other
Expand Down
4 changes: 2 additions & 2 deletions rpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "filecoin-f3-rpc"
version = "0.1.0"
version = "0.1.1"
description = "Simple HTTP JSON-RPC client for interacting with F3 endpoints, supporting certificate and power table retrieval"

authors.workspace = true
Expand All @@ -9,7 +9,7 @@ license.workspace = true
edition.workspace = true

[dependencies]
filecoin-f3-gpbft = { path = "../gpbft", version = "0.1.0" }
filecoin-f3-gpbft = { path = "../gpbft", version = "0.1.1" }

anyhow.workspace = true
jsonrpsee.workspace = true
Expand Down