From d78dd42ed471bc7f1fe1dff3a51d13de115a5020 Mon Sep 17 00:00:00 2001 From: Aayush Rajasekaran Date: Tue, 20 Oct 2020 17:29:17 -0400 Subject: [PATCH] Lotus version 1.1.0 --- CHANGELOG.md | 13 +++++++++++++ build/version.go | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 76aa51de21..c21ffb685d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Lotus changelog +# 1.1.0 / 2020-10-20 + +This is a mandatory release that introduces the first post-liftoff upgrade to the Filecoin network. The changes that break consensus are an upgrade to specs-actors v2.2.0 at epoch 170000. + +## Changes + +- Introduce Network version 6 (https://github.com/filecoin-project/lotus/pull/4506) +- Update markets v1.0.0 (https://github.com/filecoin-project/lotus/pull/4505) +- Add some extra logging to try and debug sync issues (https://github.com/filecoin-project/lotus/pull/4486) +- Circle: Run tests for some subsystems separately (https://github.com/filecoin-project/lotus/pull/4496) +- Add a terminate sectors command to lotus-shed (https://github.com/filecoin-project/lotus/pull/4507) +- Add a comment to BlockMessages to address #4446 (https://github.com/filecoin-project/lotus/pull/4491) + # 1.0.0 / 2020-10-19 It's 1.0.0! This is an optional release of Lotus that introduces some UX improvements to the 0.10 series. diff --git a/build/version.go b/build/version.go index 352fa9b0e7..2d01526b97 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.0.0" +const BuildVersion = "1.1.0" func UserVersion() string { return BuildVersion + buildType() + CurrentCommit