Skip to content

Commit 9dd6758

Browse files
authored
release v1.26.0 (#598)
* release v1.26.0 * fix FFI version
1 parent 4f64830 commit 9dd6758

File tree

12 files changed

+234
-266
lines changed

12 files changed

+234
-266
lines changed

.github/image/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ RUN git submodule update --init
2323
RUN go mod download
2424

2525
# Stage 2: Install Lotus binary
26-
FROM ghcr.io/filecoin-shipyard/lotus-containers:lotus-v1.33.0-devnet AS lotus-test
26+
FROM ghcr.io/filecoin-shipyard/lotus-containers:lotus-v1.33.1-devnet AS lotus-test
2727

2828
# Stage 3: Build the final image
2929
FROM myoung34/github-runner AS curio-github-runner

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ build_lotus?=0
279279
curio_docker_user?=curio
280280
curio_base_image=$(curio_docker_user)/curio-all-in-one:latest-debug
281281
ffi_from_source?=0
282-
lotus_version?=v1.33.0
282+
lotus_version?=v1.33.1
283283

284284
ifeq ($(build_lotus),1)
285285
# v1: building lotus image with provided lotus version

build/openrpc/curio.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"openrpc": "1.2.6",
33
"info": {
44
"title": "Curio RPC API",
5-
"version": "1.25.1"
5+
"version": "1.26.0"
66
},
77
"methods": [
88
{

build/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ func BuildTypeString() string {
4141
}
4242

4343
// Intent: Major.Network.Patch
44-
var BuildVersionArray = [3]int{1, 25, 1}
44+
var BuildVersionArray = [3]int{1, 26, 0}
4545

4646
// RC
4747
var BuildVersionRC = 0

cmd/sptool/sector.go

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -710,11 +710,6 @@ Extensions will be clamped at either the maximum sector extension of 3.5 years/1
710710
return err
711711
}
712712

713-
declMax, err := policy.GetDeclarationsMax(nv)
714-
if err != nil {
715-
return err
716-
}
717-
718713
addrSectors := sectorsMax
719714
if cctx.Int("max-sectors") != 0 {
720715
addrSectors = cctx.Int("max-sectors")
@@ -794,7 +789,7 @@ Extensions will be clamped at either the maximum sector extension of 3.5 years/1
794789
sectorsInDecl := int(sectorsWithoutClaimsCount) + len(sectorsWithClaims)
795790
scount += sectorsInDecl
796791

797-
if scount > addrSectors || len(p.Extensions) >= declMax {
792+
if scount > addrSectors || len(p.Extensions) >= policy.DeclarationsMax {
798793
params = append(params, p)
799794
p = miner.ExtendSectorExpiration2Params{}
800795
scount = sectorsInDecl

documentation/en/curio-cli/curio.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ USAGE:
77
curio [global options] command [command options]
88
99
VERSION:
10-
1.25.1
10+
1.26.0
1111
1212
COMMANDS:
1313
cli Execute cli commands

documentation/en/curio-cli/sptool.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ USAGE:
77
sptool [global options] command [command options]
88
99
VERSION:
10-
1.25.1
10+
1.26.0
1111
1212
COMMANDS:
1313
actor Manage Filecoin Miner Actor Metadata

documentation/en/versions.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ This is the compatibility matrix for the latest free Curio releases.
1515
| v1.24.5 | v1.32.0-rcX | Mainnet | v2.4.1 | v2024.2 / Automatic | 0.23 / Automatic |
1616
| v1.25.0 | v1.32.2 | Mainnet | NA | v2024.2 / Automatic | 0.25 / Automatic |
1717
| v1.25.1 | v1.33.0 | Mainnet | NA | v2024.2 / Automatic | 0.26 / Automatic |
18+
| v1.26.0 | v1.33.1 | Mainnet | NA | v2024.2 / Automatic | 0.26 / Automatic |
1819

1920
{% hint style="danger" %}
2021
Releases in <mark style="color:red;">red color</mark> are **not recommended**. Please proceed with the next stable release.

0 commit comments

Comments
 (0)