Skip to content

Commit 1888be5

Browse files
Release v7.0.0-beta.0 (#6962)
New release for Electra on Holesky and Sepolia. Includes PRs: - #6808 - #6914 - #6949 - #6950 - #6958
1 parent 25f804a commit 1888be5

File tree

6 files changed

+15
-14
lines changed

6 files changed

+15
-14
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 = "6.0.1"
3+
version = "7.0.0-beta.0"
44
authors = [
55
"Paul Hauner <[email protected]>",
66
"Age Manning <[email protected]",

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 = "6.0.1"
3+
version = "7.0.0-beta.0"
44
authors = ["Sigma Prime <[email protected]>"]
55
edition = { workspace = true }
66

common/lighthouse_version/src/lib.rs

Lines changed: 7 additions & 6 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/v6.0.1-",
21-
fallback = "Lighthouse/v6.0.1"
20+
prefix = "Lighthouse/v7.0.0-beta.0-",
21+
fallback = "Lighthouse/v7.0.0-beta.0"
2222
);
2323

2424
/// Returns the first eight characters of the latest commit hash for this build.
@@ -54,7 +54,7 @@ pub fn version_with_platform() -> String {
5454
///
5555
/// `1.5.1`
5656
pub fn version() -> &'static str {
57-
"6.0.1"
57+
"7.0.0-beta.0"
5858
}
5959

6060
/// Returns the name of the current client running.
@@ -71,9 +71,10 @@ mod test {
7171

7272
#[test]
7373
fn version_formatting() {
74-
let re =
75-
Regex::new(r"^Lighthouse/v[0-9]+\.[0-9]+\.[0-9]+(-rc.[0-9])?(-[[:xdigit:]]{7})?\+?$")
76-
.unwrap();
74+
let re = Regex::new(
75+
r"^Lighthouse/v[0-9]+\.[0-9]+\.[0-9]+(-(rc|beta).[0-9])?(-[[:xdigit:]]{7})?\+?$",
76+
)
77+
.unwrap();
7778
assert!(
7879
re.is_match(VERSION),
7980
"version doesn't match regex: {}",

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 = "6.0.1"
4+
version = "7.0.0-beta.0"
55
authors = ["Paul Hauner <[email protected]>"]
66
edition = { workspace = true }
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 = "6.0.1"
3+
version = "7.0.0-beta.0"
44
authors = ["Sigma Prime <[email protected]>"]
55
edition = { workspace = true }
66
autotests = false

0 commit comments

Comments
 (0)