Skip to content

Commit

Permalink
forest-0.4 release (#1972)
Browse files Browse the repository at this point in the history
  • Loading branch information
lemmih authored Sep 30, 2022
1 parent f3fd526 commit 2022557
Show file tree
Hide file tree
Showing 38 changed files with 100 additions and 74 deletions.
30 changes: 29 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
## Forest v0.5.0 (unreleased, scheduled for 2022-12-30)

## Forest v0.3.0 (unreleased)
## Forest v0.4.0 (2022-09-30)

Notable updates:
* Support for nv16.
* Built-in method of downloading snapshots.
* Vastly improved automated testing.

### Added
* New `forest chain export` command for generating snapshots.
* New `forest chain fetch` command for downloading recent snapshots.
* Logging settings are now part of the configuration file rather than only being
accessible through an environment variable.
* A `--detach` flag for running the Forest node in the background.
* A `--halt-after-import` for exiting Forest directly after importing a snapshot.
* Delegated Consensus: A consensus mode useful for testing.
* FIP-0023: Break ties between tipsets of equal weight.
### Changed
* Improve error messages if Forest isn't initiated with a valid database.
* Formatting clean-up in the forest wallet.
* Improved pretty-printing of debugging statediffs.
* Several dozen spelling fixes in the documentation.
* Fixed dead links in documentation (with automated detection).
* Avoided a segmentation fault caused by an improper shutdown of the database.
* Bump required rust version from nightly-2022-09-08 to nightly-2022-09-28.
### Removed
* Support for the `sled` database.

## Forest v0.3.0 (2022-07-04)

Notable updates:
* Support nv15 entirely through the FVM.
Expand Down
70 changes: 35 additions & 35 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,10 @@ Use dockerized Forest with host database:

## Dependencies

* Rust `rustc >= 1.58.1`
* Rust WASM target `wasm32-unknown-unknown`
* Rust `rustc >= nightly-2022-09-28`

```shell
rustup install nightly
rustup target add wasm32-unknown-unknown
```

* OS Base-Devel/Build-Essential
Expand Down
2 changes: 1 addition & 1 deletion blockchain/beacon/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "forest_beacon"
version = "0.1.0"
version = "0.2.0"
authors = ["ChainSafe Systems <[email protected]>"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion blockchain/blocks/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "forest_blocks"
version = "0.1.0"
version = "0.2.0"
authors = ["ChainSafe Systems <[email protected]>"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion blockchain/chain/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "forest_chain"
version = "0.1.0"
version = "0.2.0"
authors = ["ChainSafe Systems <[email protected]>"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion blockchain/chain_sync/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "forest_chain_sync"
version = "0.1.0"
version = "0.2.0"
authors = ["ChainSafe Systems <[email protected]>"]
edition = "2021"

Expand Down
Loading

0 comments on commit 2022557

Please sign in to comment.