From 89ffd368b801de4f1dee21e629662e39a2eacda2 Mon Sep 17 00:00:00 2001 From: Aayush Rajasekaran Date: Thu, 19 Nov 2020 23:47:46 -0500 Subject: [PATCH] Lotus version 1.2.1 --- CHANGELOG.md | 10 ++++++++++ build/version.go | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f290faf83..fccbb9263 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Lotus changelog +# 1.2.1 / 2020-11-20 + +This is a very small release of Lotus that fixes an issue users are experiencing when importing snapshots. There is no need to upgrade unless you experience an issue with creating a new `datastore` directory in the Lotus repo. + +## Changes + +- fix blockstore directory not created automatically (https://github.com/filecoin-project/lotus/pull/4922) +- WindowPoStScheduler.checkSectors() delete useless judgment (https://github.com/filecoin-project/lotus/pull/4918) + + # 1.2.0 / 2020-11-18 This is a mandatory release of Lotus that introduces the second post-liftoff upgrade to the Filecoin network. The network upgrade occurs at height 265200, before which time all nodes must have update to this release (or later). This release also bumps the required version of Go to 1.15. diff --git a/build/version.go b/build/version.go index 1a6a4e5b7..c3ed584b0 100644 --- a/build/version.go +++ b/build/version.go @@ -29,7 +29,7 @@ func buildType() string { } // BuildVersion is the local build version, set by build system -const BuildVersion = "1.2.0" +const BuildVersion = "1.2.1" func UserVersion() string { return BuildVersion + buildType() + CurrentCommit