Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release v1.24.5-rc1 #420

Merged
merged 1 commit into from
Feb 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build/openrpc/curio.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"openrpc": "1.2.6",
"info": {
"title": "Curio RPC API",
"version": "1.24.4"
"version": "1.24.5-rc1"
},
"methods": [
{
Expand Down
20 changes: 16 additions & 4 deletions build/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,23 @@ func BuildTypeString() string {
}

// Intent: Major.Network.Patch
var BuildVersionArray = [3]int{1, 24, 4}
var BuildVersionArray = [3]int{1, 24, 5}

// Ex: "1.2.3"
var BuildVersion = strings.Join(lo.Map(BuildVersionArray[:],
func(i int, _ int) string { return strconv.Itoa(i) }), ".")
// RC
var BuildVersionRC = 1

// Ex: "1.2.3" or "1.2.3-rcX"
var BuildVersion string

func init() {
version := strings.Join(lo.Map(BuildVersionArray[:],
func(i int, _ int) string { return strconv.Itoa(i) }), ".")

if BuildVersionRC > 0 {
version += "-rc" + strconv.Itoa(BuildVersionRC)
}
BuildVersion = version
}

func UserVersion() string {
if os.Getenv("CURIO_VERSION_IGNORE_COMMIT") == "1" {
Expand Down
2 changes: 1 addition & 1 deletion documentation/en/curio-cli/curio.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ USAGE:
curio [global options] command [command options]

VERSION:
1.24.4
1.24.5-rc1

COMMANDS:
cli Execute cli commands
Expand Down
2 changes: 1 addition & 1 deletion documentation/en/curio-cli/sptool.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ USAGE:
sptool [global options] command [command options]

VERSION:
1.24.4
1.24.5-rc1

COMMANDS:
actor Manage Filecoin Miner Actor Metadata
Expand Down
21 changes: 11 additions & 10 deletions documentation/en/versions.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,17 @@

This is the compatibility matrix for the latest free Curio releases.

| Curio Version | Lotus Version | Net | Boost | Yugabyte | Forest |
| ------------------------------------------------------------ | ------------- | ------- | ---------- | ------------------ | ---------------- |
| 1.22.1 / Automatic | v1.27.X | MainNet | v2.3.0-rc2 | 2.20.X / Automatic | 0.19 / Automatic |
| 1.23.0 | >v1.28.1 | MainNet | v2.3.0 | 2.20.X / Automatic | 0.19 / Automatic |
| v1.23.1 | >v1.28.1 | MainNet | v2.3.0 | 2.20.x / Automatic | 0.19 / Automatic |
| <mark style="color:red;background-color:red;">v1.24.0</mark> | v1.30.0-rcX | MainNet | v2.4.0-rc1 | 2.20.x / Automatic | 0.21 / Automatic |
| v1.24.1 | v1.30.0-rcX | MainNet | v2.4.0-rc1 | 2.20.x / Automatic | 0.21 / Automatic |
| v1.24.2 | v1.30.0 | MainNet | v2.4.0 | 2.20.x / Automatic | 0.21 / Automatic |
| v1.24.3 | v1.32.0-rcX | MainNet | v2.4.1 | 2.20.x / Automatic | 0.21 / Automatic |
| v1.24.4 | v1.32.0-rcX | MainNet | v2.4.1 | 2.20.x / Automatic | 0.23 / Automatic |
| Curio Version | Lotus Version | Net | Boost | Yugabyte | Forest |
|--------------------------------------------------------------|---------------|---------|------------|---------------------|------------------|
| 1.22.1 / Automatic | v1.27.X | MainNet | v2.3.0-rc2 | 2.20.X / Automatic | 0.19 / Automatic |
| 1.23.0 | >v1.28.1 | MainNet | v2.3.0 | 2.20.X / Automatic | 0.19 / Automatic |
| v1.23.1 | >v1.28.1 | MainNet | v2.3.0 | 2.20.x / Automatic | 0.19 / Automatic |
| <mark style="color:red;background-color:red;">v1.24.0</mark> | v1.30.0-rcX | MainNet | v2.4.0-rc1 | 2.20.x / Automatic | 0.21 / Automatic |
| v1.24.1 | v1.30.0-rcX | MainNet | v2.4.0-rc1 | 2.20.x / Automatic | 0.21 / Automatic |
| v1.24.2 | v1.30.0 | MainNet | v2.4.0 | 2.20.x / Automatic | 0.21 / Automatic |
| v1.24.3 | v1.32.0-rcX | MainNet | v2.4.1 | 2.20.x / Automatic | 0.21 / Automatic |
| v1.24.4 | v1.32.0-rcX | MainNet | v2.4.1 | 2.20.x / Automatic | 0.23 / Automatic |
| v1.24.5-rc1 | v1.32.0-rcX | Mainnet | v2.4.1 | v2024.2 / Automatic | 0.23 / Automatic |

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