Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

forest-0.4 release #1972

Merged
merged 5 commits into from
Sep 30, 2022
Merged
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
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)
lemmih marked this conversation as resolved.
Show resolved Hide resolved

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