Compare commits

...

2 Commits

Author SHA1 Message Date
Michael Sproul
2a3c709f8c Release v5.1.1 (#5396)
* Release v5.1.1
2024-03-12 03:42:15 +00:00
Michael Sproul
1d7223fadf Fix macOS build by updating cc (#5393)
* Fix macOS build by bumping `cc`
2024-03-12 02:47:54 +00:00
6 changed files with 22 additions and 12 deletions

22
Cargo.lock generated
View File

@@ -935,7 +935,7 @@ dependencies = [
[[package]]
name = "beacon_node"
version = "5.1.0"
version = "5.1.1"
dependencies = [
"beacon_chain",
"clap",
@@ -1187,7 +1187,7 @@ dependencies = [
[[package]]
name = "boot_node"
version = "5.1.0"
version = "5.1.1"
dependencies = [
"beacon_node",
"clap",
@@ -1354,10 +1354,11 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
[[package]]
name = "cc"
version = "1.0.88"
version = "1.0.90"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "02f341c093d19155a6e41631ce5971aac4e9a868262212153124c15fa22d1cdc"
checksum = "8cd6604a82acf3039f1144f54b8eb34e91ffba622051189e71b781822d5ee1f5"
dependencies = [
"jobserver",
"libc",
]
@@ -4367,6 +4368,15 @@ dependencies = [
"libc",
]
[[package]]
name = "jobserver"
version = "0.1.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab46a6e9526ddef3ae7f787c06f0f2600639ba80ea3eade3d8e670a2230f51d6"
dependencies = [
"libc",
]
[[package]]
name = "js-sys"
version = "0.3.68"
@@ -4488,7 +4498,7 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
[[package]]
name = "lcli"
version = "5.1.0"
version = "5.1.1"
dependencies = [
"account_utils",
"beacon_chain",
@@ -5064,7 +5074,7 @@ dependencies = [
[[package]]
name = "lighthouse"
version = "5.1.0"
version = "5.1.1"
dependencies = [
"account_manager",
"account_utils",

View File

@@ -1,6 +1,6 @@
[package]
name = "beacon_node"
version = "5.1.0"
version = "5.1.1"
authors = [
"Paul Hauner <paul@paulhauner.com>",
"Age Manning <Age@AgeManning.com",

View File

@@ -1,6 +1,6 @@
[package]
name = "boot_node"
version = "5.1.0"
version = "5.1.1"
authors = ["Sigma Prime <contact@sigmaprime.io>"]
edition = { workspace = true }

View File

@@ -17,8 +17,8 @@ pub const VERSION: &str = git_version!(
// NOTE: using --match instead of --exclude for compatibility with old Git
"--match=thiswillnevermatchlol"
],
prefix = "Lighthouse/v5.1.0-",
fallback = "Lighthouse/v5.1.0"
prefix = "Lighthouse/v5.1.1-",
fallback = "Lighthouse/v5.1.1"
);
/// Returns `VERSION`, but with platform information appended to the end.

View File

@@ -1,7 +1,7 @@
[package]
name = "lcli"
description = "Lighthouse CLI (modeled after zcli)"
version = "5.1.0"
version = "5.1.1"
authors = ["Paul Hauner <paul@paulhauner.com>"]
edition = { workspace = true }

View File

@@ -1,6 +1,6 @@
[package]
name = "lighthouse"
version = "5.1.0"
version = "5.1.1"
authors = ["Sigma Prime <contact@sigmaprime.io>"]
edition = { workspace = true }
autotests = false