From 23ec780a13b14f350c3540db12fe9458af1ec268 Mon Sep 17 00:00:00 2001 From: Aayush Rajasekaran Date: Thu, 3 Sep 2020 12:48:20 -0400 Subject: [PATCH] Lotus version v0.5.9 --- CHANGELOG.md | 12 ++++++++++++ build/version.go | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 24017fc4e9b..37b2d6024af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Lotus changelog +# 0.5.9 / 2020-09-03 + +This patch includes a hotfix to the `GasEstimateFeeCap` method, capping the estimated fee to a reasonable level by default. + +## Changes + +- Added target height to sync wait (https://github.com/filecoin-project/lotus/pull/3502) +- Disable codecov annotations (https://github.com/filecoin-project/lotus/pull/3514) +- Cap fees to reasonable level by default (https://github.com/filecoin-project/lotus/pull/3516) +- Add APIs and command to inspect bandwidth usage (https://github.com/filecoin-project/lotus/pull/3497) +- Track expected nonce in mpool, ignore messages with large nonce gaps (https://github.com/filecoin-project/lotus/pull/3450) + # 0.5.8 / 2020-09-02 This patch includes some bugfixes to the sector sealing process, and updates go-fil-markets. It also improves the performance of blocksync, adds a method to export chain state trees, and improves chainwatch. diff --git a/build/version.go b/build/version.go index 6062d2739fb..076071a691b 100644 --- a/build/version.go +++ b/build/version.go @@ -25,7 +25,7 @@ func buildType() string { } // BuildVersion is the local build version, set by build system -const BuildVersion = "0.5.8" +const BuildVersion = "0.5.9" func UserVersion() string { return BuildVersion + buildType() + CurrentCommit