diff --git a/CHANGELOG.md b/CHANGELOG.md index edfba0d60fe9..d0ed1319cbee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ## Forest v0.5.0 (unreleased, scheduled for 2022-12-30) +## Forest v0.4.1 (2022-10-04) + +### Changed +* Fix bug in handling of blockchain forks. + ## Forest v0.4.0 (2022-09-30) Notable updates: diff --git a/Cargo.lock b/Cargo.lock index 72cdc06dc888..81842606bf33 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2483,7 +2483,7 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "forest" -version = "0.4.0" +version = "0.4.1" dependencies = [ "anyhow", "assert_cmd", @@ -2713,7 +2713,7 @@ dependencies = [ [[package]] name = "forest_chain_sync" -version = "0.2.0" +version = "0.2.1" dependencies = [ "anyhow", "async-std", diff --git a/blockchain/chain_sync/Cargo.toml b/blockchain/chain_sync/Cargo.toml index 8077d9281da0..85f0ff6f9604 100644 --- a/blockchain/chain_sync/Cargo.toml +++ b/blockchain/chain_sync/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "forest_chain_sync" -version = "0.2.0" +version = "0.2.1" authors = ["ChainSafe Systems "] edition = "2021" diff --git a/forest/Cargo.toml b/forest/Cargo.toml index 591c6453b4c9..15e8e4e47cb1 100644 --- a/forest/Cargo.toml +++ b/forest/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "forest" -version = "0.4.0" +version = "0.4.1" authors = ["ChainSafe Systems "] description = "Filecoin implementation in Rust. This command will start the daemon process." edition = "2021"