From a49b21b94ac97ab50e578b2f0ab76033955ec69f Mon Sep 17 00:00:00 2001 From: Aayush Rajasekaran Date: Sun, 4 Apr 2021 21:31:02 -0400 Subject: [PATCH] Lotus version 1.6.0 --- CHANGELOG.md | 12 +++++++++++- build/version.go | 2 +- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b1d71749a..c00fac15f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,21 @@ # Lotus changelog -# 1.6.0-rc2 / 2021-03-30 +# 1.6.0 / 2021-04-05 This is the second release candidate for Lotus v1.6.0. The primary change included in this release is introducing network version 11, which implements [FIP-0014](https://github.com/filecoin-project/FIPs/blob/master/FIPS/fip-0014.md). +## v1 sector extension CLI + +This release also expands the `lotus-miner sectors extend` CLI, with a new option that automatically extends all extensible v1 sectors. The option can be run using `lotus-miner sectors extend --v1-sectors`. + +- The `tolerance` flag can be passed to indicate what durations aren't "worth" extending. It defaults to one week, which means that sectors whose current lifetime's are within one week of the maximum possible lifetime will not be extended. + +- The `expiration-cutoff` flag can be passed to skip sectors whose expiration is past a certain point from the current head. It defaults to infinity (no cutoff), but if, say, 28800 was specified, then only sectors expiring in the next 10 days would be extended (2880 epochs in 1 day). + ## Changes +- Util for miners to extend all v1 sectors (https://github.com/filecoin-project/lotus/pull/5924) +- Upgrade the butterfly network (https://github.com/filecoin-project/lotus/pull/5929) - Introduce the v11 network upgrade (https://github.com/filecoin-project/lotus/pull/5904) - Debug mode: Make upgrade heights controllable by an envvar (https://github.com/filecoin-project/lotus/pull/5919) diff --git a/build/version.go b/build/version.go index e2528f8cc..90da4131f 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-rc2" +const BuildVersion = "1.6.0" func UserVersion() string { return BuildVersion + buildType() + CurrentCommit