Skip to content

Commit

Permalink
release v1.24.5-rc1 (#420)
Browse files Browse the repository at this point in the history
  • Loading branch information
LexLuthr authored Feb 21, 2025
1 parent dd374a2 commit 1f962a1
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 17 deletions.
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

0 comments on commit 1f962a1

Please sign in to comment.