From 5019fa4cdd2ea63dd9e77927314162bd73ea01eb Mon Sep 17 00:00:00 2001 From: Aayush Rajasekaran Date: Tue, 27 Apr 2021 01:05:11 -0400 Subject: [PATCH] Lotus version 1.8.0 --- CHANGELOG.md | 8 ++++++++ build/version.go | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a4fca397d..32dd598b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Lotus changelog +# 1.8.0 / 2021-04-05 + +This is a mandatory release of Lotus that upgrades the network to version 12, which introduces various performance improvements to the cron processing of the power actor. The network will upgrade at height 712320, which is 2021-04-29T06:00:00Z. + +## Changes + +- v4 specs-actors integration, nv12 migration (https://github.com/filecoin-project/lotus/pull/6116) + # 1.6.0 / 2021-04-05 This is a mandatory release of Lotus that upgrades the network to version 11, which implements [FIP-0014](https://github.com/filecoin-project/FIPs/blob/master/FIPS/fip-0014.md). The network will upgrade at height 665280, which is 2021-04-12T22:00:00Z. diff --git a/build/version.go b/build/version.go index 90da4131f..60a45d1a0 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.6.0" +const BuildVersion = "1.8.0" func UserVersion() string { return BuildVersion + buildType() + CurrentCommit