Skip to content

Commit

Permalink
feat: Update clients (#208)
Browse files Browse the repository at this point in the history
* Update geth to 1.13.1

* Update other clients

* Change README versions

* Update Teku

* Add bad combo disclaimer to readme

* Remove disclaimer

---------

Co-authored-by: Hugo Masclet <[email protected]>
  • Loading branch information
Wolmin and Hugoo authored Sep 25, 2023
1 parent 27ad3b6 commit 7894c11
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ The LUKSO CLI is able to install multiple clients for running the node.

| Client | Version | Release |
|------------|---------|--------------------------------------------------------------|
| Geth | v1.12.2 | https://github.com/ethereum/go-ethereum/releases/tag/v1.12.2 |
| Erigon | v2.48.1 | https://github.com/ledgerwatch/erigon/releases/tag/v2.48.1 |
| Geth | v1.13.1 | https://github.com/ethereum/go-ethereum/releases/tag/v1.13.1 |
| Erigon | v2.49.2 | https://github.com/ledgerwatch/erigon/releases/tag/v2.49.2 |
| Prysm | v4.0.8 | https://github.com/prysmaticlabs/prysm/releases/tag/v4.0.8 |
| Lighthouse | v4.3.0 | https://github.com/sigp/lighthouse/releases/tag/v4.3.0 |
| Teku | v23.8.0 | https://github.com/Consensys/teku/releases/tag/23.8.0 |
| Lighthouse | v4.4.1 | https://github.com/sigp/lighthouse/releases/tag/v4.4.1 |
| Teku | v23.9.0 | https://github.com/Consensys/teku/releases/tag/23.9.0 |

> More clients will be added in the future.
Expand Down
12 changes: 6 additions & 6 deletions flags/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -189,20 +189,20 @@ var (
&cli.StringFlag{
Name: GethTagFlag,
Usage: "A tag of geth you would like to run",
Value: "1.12.2",
Value: "1.13.1",
},
&cli.StringFlag{
Name: GethCommitHashFlag,
Usage: "A hash of commit that is bound to given release tag",
Value: "bed84606",
Value: "3f40e65c",
},
}

GethUpdateFlags = []cli.Flag{
&cli.StringFlag{
Name: GethTagFlag,
Usage: "A tag of geth you would like to run",
Value: "1.12.2",
Value: "1.13.1",
},
}

Expand Down Expand Up @@ -246,7 +246,7 @@ var (
&cli.StringFlag{
Name: ErigonTagFlag,
Usage: "Tag for erigon",
Value: "2.48.1",
Value: "2.49.2",
},
}
ErigonStartFlags = []cli.Flag{
Expand Down Expand Up @@ -320,7 +320,7 @@ var (
&cli.StringFlag{
Name: LighthouseTagFlag,
Usage: "Tag for lighthouse",
Value: "v4.3.0",
Value: "v4.4.1",
},
}
LighthouseStartFlags = []cli.Flag{
Expand Down Expand Up @@ -403,7 +403,7 @@ var (
&cli.StringFlag{
Name: TekuTagFlag,
Usage: "Tag for teku client",
Value: "23.8.0",
Value: "23.9.0",
},
}
TekuStartFlags = []cli.Flag{
Expand Down

0 comments on commit 7894c11

Please sign in to comment.