From d5c4b66ec734dbd48d7273c89208be951434d094 Mon Sep 17 00:00:00 2001 From: whyrusleeping Date: Tue, 25 Aug 2020 17:31:40 -0700 Subject: [PATCH] Lotus release v0.5.4 --- CHANGELOG.md | 22 ++++++++++++++++++++++ build/version.go | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ed24229e4..c9133c0ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Lotus changelog +# 0.5.4 + +A patch release, containing a few nice bugfixes and improvements: + +- Fix parsing of peer ID in `lotus-miner actor set-peer-id` (@whyrusleeping) +- Update dependencies, fixing several bugs (@Stebalien) +- Fix remaining linter warnings (@Stebalien) +- Use safe string truncation (@Ingar) +- Allow tweaking of blocksync message window size (@whyrusleeping) +- Add some additional gas stats to metrics (@Kubuxu) +- Fix an edge case bug in message selection, add many tests (@vyzo) + +# 0.5.3 + +Yet another hotfix release. +A lesson for readers, having people who have been awake for 12+ hours review +your hotfix PR is not a good idea. Find someone who has enough slept recently +enough to give you good code review, otherwise you'll end up quickly bumping +versions again. + +- Fixed a bug in the mempool that was introduced in v0.5.2 + # 0.5.2 / 2020-08-24 This is a hotfix release. diff --git a/build/version.go b/build/version.go index 70439d4f7..d549f63a8 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.5.2" +const BuildVersion = "0.5.4" func UserVersion() string { return BuildVersion + buildType() + CurrentCommit