Skip to content

Commit bf533c8

Browse files
committed
v3.3.0 (#3741)
## Issue Addressed NA ## Proposed Changes - Bump versions - Pin the `nethermind` version since our method of getting the latest tags on `master` is giving us an old version (`1.14.1`). - Increase timeout for execution engine startup. ## Additional Info - [x] ~Awaiting further testing~
1 parent b477c42 commit bf533c8

File tree

8 files changed

+15
-12
lines changed

8 files changed

+15
-12
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

beacon_node/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "beacon_node"
3-
version = "3.2.1"
3+
version = "3.3.0"
44
authors = ["Paul Hauner <[email protected]>", "Age Manning <[email protected]"]
55
edition = "2021"
66

boot_node/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "boot_node"
3-
version = "3.2.1"
3+
version = "3.3.0"
44
authors = ["Sigma Prime <[email protected]>"]
55
edition = "2021"
66

common/lighthouse_version/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ pub const VERSION: &str = git_version!(
1717
// NOTE: using --match instead of --exclude for compatibility with old Git
1818
"--match=thiswillnevermatchlol"
1919
],
20-
prefix = "Lighthouse/v3.2.1-",
21-
fallback = "Lighthouse/v3.2.1"
20+
prefix = "Lighthouse/v3.3.0-",
21+
fallback = "Lighthouse/v3.3.0"
2222
);
2323

2424
/// Returns `VERSION`, but with platform information appended to the end.

lcli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "lcli"
33
description = "Lighthouse CLI (modeled after zcli)"
4-
version = "3.2.1"
4+
version = "3.3.0"
55
authors = ["Paul Hauner <[email protected]>"]
66
edition = "2021"
77

lighthouse/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lighthouse"
3-
version = "3.2.1"
3+
version = "3.3.0"
44
authors = ["Sigma Prime <[email protected]>"]
55
edition = "2021"
66
autotests = false

testing/execution_engine_integration/src/nethermind.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ use std::process::{Child, Command, Output};
88
use tempfile::TempDir;
99
use unused_port::unused_tcp_port;
1010

11-
const NETHERMIND_BRANCH: &str = "master";
11+
/// We've pinned the Nethermind version since our method of using the `master` branch to
12+
/// find the latest tag isn't working. It appears Nethermind don't always tag on `master`.
13+
/// We should fix this so we always pull the latest version of Nethermind.
14+
const NETHERMIND_BRANCH: &str = "release/1.14.6";
1215
const NETHERMIND_REPO_URL: &str = "https://github.com/NethermindEth/nethermind";
1316

1417
fn build_result(repo_dir: &Path) -> Output {

testing/execution_engine_integration/src/test_rig.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ use types::{
1818
Address, ChainSpec, EthSpec, ExecutionBlockHash, ExecutionPayload, FullPayload, Hash256,
1919
MainnetEthSpec, PublicKeyBytes, Slot, Uint256,
2020
};
21-
const EXECUTION_ENGINE_START_TIMEOUT: Duration = Duration::from_secs(20);
21+
const EXECUTION_ENGINE_START_TIMEOUT: Duration = Duration::from_secs(30);
2222

2323
struct ExecutionPair<E, T: EthSpec> {
2424
/// The Lighthouse `ExecutionLayer` struct, connected to the `execution_engine` via HTTP.

0 commit comments

Comments
 (0)