Skip to content

Commit ddbd4e6

Browse files
committed
v1.5.2-rc.0 (#2565)
## Issue Addressed NA ## Proposed Changes - Bump version - Tidy some comments mangled by the version change regex. ## Additional Info NA
1 parent 9c785a9 commit ddbd4e6

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

Cargo.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

beacon_node/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "beacon_node"
3-
version = "1.5.1"
3+
version = "1.5.2-rc.0"
44
authors = ["Paul Hauner <[email protected]>", "Age Manning <[email protected]"]
55
edition = "2018"
66

boot_node/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "boot_node"
3-
version = "1.5.1"
3+
version = "1.5.2-rc.0"
44
authors = ["Sigma Prime <[email protected]>"]
55
edition = "2018"
66

common/lighthouse_version/src/lib.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use target_info::Target;
77
///
88
/// ## Example
99
///
10-
/// `Lighthouse/v0.2.0-1419501f2+`
10+
/// `Lighthouse/v1.5.1-67da032+`
1111
pub const VERSION: &str = git_version!(
1212
args = [
1313
"--always",
@@ -16,15 +16,15 @@ pub const VERSION: &str = git_version!(
1616
// NOTE: using --match instead of --exclude for compatibility with old Git
1717
"--match=thiswillnevermatchlol"
1818
],
19-
prefix = "Lighthouse/v1.5.1-",
19+
prefix = "Lighthouse/v1.5.2-rc.0-",
2020
fallback = "unknown"
2121
);
2222

2323
/// Returns `VERSION`, but with platform information appended to the end.
2424
///
2525
/// ## Example
2626
///
27-
/// `Lighthouse/v0.2.0-1419501f2+/x86_64-linux`
27+
/// `Lighthouse/v1.5.1-67da032+/x86_64-linux`
2828
pub fn version_with_platform() -> String {
2929
format!("{}/{}-{}", VERSION, Target::arch(), Target::os())
3030
}

lcli/Cargo.toml

+1-1
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 = "1.5.1"
4+
version = "1.5.2-rc.0"
55
authors = ["Paul Hauner <[email protected]>"]
66
edition = "2018"
77

lighthouse/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lighthouse"
3-
version = "1.5.1"
3+
version = "1.5.2-rc.0"
44
authors = ["Sigma Prime <[email protected]>"]
55
edition = "2018"
66
autotests = false

0 commit comments

Comments
 (0)