build release
This commit is contained in:
parent
7f64da29cb
commit
1dbd4f50bc
@ -12,13 +12,14 @@
|
||||
|
||||
## Improvements
|
||||
|
||||
# v1.28.0-rc4 / 2024-07-04
|
||||
# v1.28.0-rc5 / 2024-07-11
|
||||
|
||||
This is the fourth release candidate of the upcoming MANDATORY Lotus v1.28.0 release, which will deliver the Filecoin network version 23, codenamed Waffle 🧇.
|
||||
This is the fifth release candidate of the upcoming MANDATORY Lotus v1.28.0 release, which will deliver the Filecoin network version 23, codenamed Waffle 🧇.
|
||||
|
||||
**This release candidate sets the calibration network to upgrade at epoch 1779094, corresponding to 2024-07-11T12:00:00Z.** This release does NOT set the mainnet upgrade epoch yet, in which will be updated in the final release.
|
||||
|
||||
Compared to `Lotus v1.28.0-rc3`, the `Lotus v1.28.0-rc4` release addresses an issue that allows us to publish Docker builds.
|
||||
Compared to `Lotus v1.28.0-rc4`, the `Lotus v1.28.0-rc5` release addresses some performance problems in the `eth_getLogs` API.
|
||||
It also addresses a bug in the `eth_getLogs` API around handling null blocks.
|
||||
|
||||
☢️ Upgrade Warnings ☢️
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
"openrpc": "1.2.6",
|
||||
"info": {
|
||||
"title": "Lotus RPC API",
|
||||
"version": "1.28.0-rc4"
|
||||
"version": "1.28.0-rc5"
|
||||
},
|
||||
"methods": [
|
||||
{
|
||||
|
@ -2,7 +2,7 @@
|
||||
"openrpc": "1.2.6",
|
||||
"info": {
|
||||
"title": "Lotus RPC API",
|
||||
"version": "1.28.0-rc4"
|
||||
"version": "1.28.0-rc5"
|
||||
},
|
||||
"methods": [
|
||||
{
|
||||
|
@ -2,7 +2,7 @@
|
||||
"openrpc": "1.2.6",
|
||||
"info": {
|
||||
"title": "Lotus RPC API",
|
||||
"version": "1.28.0-rc4"
|
||||
"version": "1.28.0-rc5"
|
||||
},
|
||||
"methods": [
|
||||
{
|
||||
|
@ -2,7 +2,7 @@
|
||||
"openrpc": "1.2.6",
|
||||
"info": {
|
||||
"title": "Lotus RPC API",
|
||||
"version": "1.28.0-rc4"
|
||||
"version": "1.28.0-rc5"
|
||||
},
|
||||
"methods": [
|
||||
{
|
||||
|
@ -39,7 +39,7 @@ func BuildTypeString() string {
|
||||
}
|
||||
|
||||
// NodeBuildVersion is the local build version of the Lotus daemon
|
||||
const NodeBuildVersion string = "1.28.0-rc4"
|
||||
const NodeBuildVersion string = "1.28.0-rc5"
|
||||
|
||||
func NodeUserVersion() BuildVersion {
|
||||
if os.Getenv("LOTUS_VERSION_IGNORE_COMMIT") == "1" {
|
||||
@ -50,7 +50,7 @@ func NodeUserVersion() BuildVersion {
|
||||
}
|
||||
|
||||
// MinerBuildVersion is the local build version of the Lotus miner
|
||||
const MinerBuildVersion = "1.28.0-rc4"
|
||||
const MinerBuildVersion = "1.28.0-rc5"
|
||||
|
||||
func MinerUserVersion() BuildVersion {
|
||||
if os.Getenv("LOTUS_VERSION_IGNORE_COMMIT") == "1" {
|
||||
|
@ -7,7 +7,7 @@ USAGE:
|
||||
lotus-miner [global options] command [command options] [arguments...]
|
||||
|
||||
VERSION:
|
||||
1.28.0-rc4
|
||||
1.28.0-rc5
|
||||
|
||||
COMMANDS:
|
||||
init Initialize a lotus miner repo
|
||||
|
@ -7,7 +7,7 @@ USAGE:
|
||||
lotus-worker [global options] command [command options] [arguments...]
|
||||
|
||||
VERSION:
|
||||
1.28.0-rc4
|
||||
1.28.0-rc5
|
||||
|
||||
COMMANDS:
|
||||
run Start lotus worker
|
||||
|
@ -7,7 +7,7 @@ USAGE:
|
||||
lotus [global options] command [command options] [arguments...]
|
||||
|
||||
VERSION:
|
||||
1.28.0-rc4
|
||||
1.28.0-rc5
|
||||
|
||||
COMMANDS:
|
||||
daemon Start a lotus daemon process
|
||||
|
Loading…
Reference in New Issue
Block a user