From e9e067eebf95422c5c5da7c0b022330a42ec9e0e Mon Sep 17 00:00:00 2001 From: Aayush Rajasekaran Date: Tue, 8 Sep 2020 03:09:41 -0400 Subject: [PATCH] Lotus version 0.6.1 --- CHANGELOG.md | 9 +++++++++ build/version.go | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1bdcfc318..15bfe8334 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Lotus changelog +# 0.6.1 / 2020-09-08 + +This optional release introduces a minor improvement to the sync process, ensuring nodes don't fall behind and then resync. + +## Changes + +- Update `test-vectors` (https://github.com/filecoin-project/lotus/pull/3645) +- Revert "only subscribe to pubsub topics once we are synced" (https://github.com/filecoin-project/lotus/pull/3643) + # 0.6.0 / 2020-09-07 This consensus-breaking release of Lotus is designed to test a network upgrade on the space race testnet. The changes that break consensus are: diff --git a/build/version.go b/build/version.go index 65ae0987d..adaade907 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.6.0" +const BuildVersion = "0.6.1" func UserVersion() string { return BuildVersion + buildType() + CurrentCommit