diff --git a/CHANGELOG.md b/CHANGELOG.md index 5cf8082bba4c..e7454c7a747e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,21 @@ ### Added +### Changed + +### Removed + +### Fixed + +## Forest v0.15.0 "Buttress" + +Forest v0.15.0 is a service release containing minor bug fixes and small +usability improvements. + +### Breaking + +### Added + - [#3591](https://github.com/ChainSafe/forest/pull/3591) Add `forest-tool car validate` command for checking non-filecoin invariants in CAR files. diff --git a/Cargo.lock b/Cargo.lock index 4ac3e42a4a36..c96c0c539869 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2891,7 +2891,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "forest-filecoin" -version = "0.14.0" +version = "0.15.0" dependencies = [ "ahash", "anes", diff --git a/Cargo.toml b/Cargo.toml index 1b5731208761..2af932630074 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "forest-filecoin" -version = "0.14.0" +version = "0.15.0" 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 f6a58727080e..25e20c6b2e6f 100644 --- a/src/db/migration/migration_map.rs +++ b/src/db/migration/migration_map.rs @@ -76,6 +76,7 @@ pub(super) static MIGRATIONS: Lazy = Lazy::new(|| { create_migrations!( "0.12.1" -> "0.13.0" @ Migration0_12_1_0_13_0, "0.13.0" -> "0.14.0" @ MigrationVoid, + "0.14.0" -> "0.15.0" @ MigrationVoid, ); pub struct Migration {