File tree Expand file tree Collapse file tree 6 files changed +15
-14
lines changed
common/lighthouse_version/src Expand file tree Collapse file tree 6 files changed +15
-14
lines changed Original file line number Diff line number Diff line change 11[package ]
22name = " beacon_node"
3- version = " 6 .0.1 "
3+ version = " 7 .0.0-beta.0 "
44authors = [
55 " Paul Hauner <paul@paulhauner.com>" ,
66 " Age Manning <Age@AgeManning.com" ,
Original file line number Diff line number Diff line change 11[package ]
22name = " boot_node"
3- version = " 6 .0.1 "
3+ version = " 7 .0.0-beta.0 "
44authors = [" Sigma Prime <contact@sigmaprime.io>" ]
55edition = { workspace = true }
66
Original file line number Diff line number Diff 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`
5656pub 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: {}" ,
Original file line number Diff line number Diff line change 11[package ]
22name = " lcli"
33description = " Lighthouse CLI (modeled after zcli)"
4- version = " 6 .0.1 "
4+ version = " 7 .0.0-beta.0 "
55authors = [" Paul Hauner <paul@paulhauner.com>" ]
66edition = { workspace = true }
77
Original file line number Diff line number Diff line change 11[package ]
22name = " lighthouse"
3- version = " 6 .0.1 "
3+ version = " 7 .0.0-beta.0 "
44authors = [" Sigma Prime <contact@sigmaprime.io>" ]
55edition = { workspace = true }
66autotests = false
You can’t perform that action at this time.
0 commit comments