From c567f74ad61d89c85aac25ee35dd6eb0af313fa7 Mon Sep 17 00:00:00 2001 From: Hubert Date: Wed, 24 Jan 2024 12:26:02 +0100 Subject: [PATCH] prepare release v0.16.5 Pinecone Deactivation (#3897) --- CHANGELOG.md | 16 ++++++++++++++-- Cargo.lock | 2 +- Cargo.toml | 2 +- src/db/migration/migration_map.rs | 1 + 4 files changed, 17 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6387a1b97c9e..a57127a3470f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,20 @@ ### Added +### Changed + +### Removed + +### Fixed + +## Forest 0.16.5 "Pinecone Deactivation" + +Non-mandatory upgrade including mostly new RPC endpoints. The option to use an +alternative `FilOps` snapshot provider was removed given the service was +decommissioned. + +### Added + - [#3817](https://github.com/ChainSafe/forest/pull/3817/) Implement the `Filecoin.StateVerifiedClientStatus` lotus-compatible RPC API. - [#3824](https://github.com/ChainSafe/forest/pull/3824) Add `--ws` flag to @@ -58,8 +72,6 @@ serving lite snapshots. Removed `filops` option from `forest-tool snapshot fetch --vendor [vendor]`. -### Fixed - ## Forest 0.16.4 "Speedy Gonzales" ### Breaking diff --git a/Cargo.lock b/Cargo.lock index 1c33610b1f1d..161513cada99 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3120,7 +3120,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "forest-filecoin" -version = "0.16.4" +version = "0.16.5" dependencies = [ "ahash", "anes 0.2.0", diff --git a/Cargo.toml b/Cargo.toml index 1302c4fcace9..c4bc8a97a903 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "forest-filecoin" -version = "0.16.4" +version = "0.16.5" authors = ["ChainSafe Systems "] repository = "https://github.com/ChainSafe/forest" edition = "2021" diff --git a/src/db/migration/migration_map.rs b/src/db/migration/migration_map.rs index b2a2cb66cf28..c38434d12e52 100644 --- a/src/db/migration/migration_map.rs +++ b/src/db/migration/migration_map.rs @@ -86,6 +86,7 @@ create_migrations!( "0.16.1" -> "0.16.2" @ MigrationVoid, "0.16.2" -> "0.16.3" @ MigrationVoid, "0.16.3" -> "0.16.4" @ MigrationVoid, + "0.16.4" -> "0.16.5" @ MigrationVoid, ); pub struct Migration {